Beglaubigt.de API
Events

Verifications Completed

Understanding the Event

The verifications.completed event is triggered automatically when the identities of all signers have been successfully verified.

Payload Fields

webhook_idstring

A unique identifier for this webhook in a UUID format.
Example: 123e4567-e89b-12d3-a456-426614174000

eventstring

The name of the event that triggered this webhook.
Value: verifications.completed

messagestring

Provides a human-readable message indicating the result of the webhook event.
Value: All signers have verified their identity.

timestampstring

The exact date and time when the webhook was triggered, formatted as an ISO 8601 string in UTC.
Example2024-12-01T07:19:30.443Z

servicestring

The type of service this webhook relates to.
Value: notarization

case_idstring

The unique identifier for the case in a UUID format.
Example123e4567-e89b-12d3-a456-426614174000

document_idstring

The unique identifier for the document in a UUID format.
Example123e4567-e89b-12d3-a456-426614174000

document_statusstring

Indicates the current status of the document.
Possible valuesdraftsignatures-requestedwaiting-for-verificationsnotarization-started or completed

signersarray

List of signers included in this case.

client_referencestring

Your custom reference string provided during case creation.
Example: REF-2025-001

Response
{
  "webhook_id": "123e4567-e89b-12d3-a456-426614174000",
  "event": "verifications.completed",
  "message": "All signers have verified their identity.",
  "timestamp": "2024-10-18T12:00:00Z",
  "service": "notarization",
  "case_id": "123e4567-e89b-12d3-a456-426614174000",
  "document_id": "456e1234-e89b-12d3-a456-426614174001",
  "document_status": "verifications-completed",
  "signers": [
    {
      "first_name": "John",
      "last_name": "Doe",
      "email": "john@example.com",
      "identity_verified_at": "2024-12-01T07:19:30.443Z"
    }
  ],
  "client_reference": "REF-2025-001"
}

On this page