Skip to main content

Documentation Index

Fetch the complete documentation index at: https://beglaubigt.de/docs/llms.txt

Use this file to discover all available pages before exploring further.

Understanding the Event

The signatures.completed event is triggered automatically when all required signatures for a document have been successfully completed.

Payload Fields

webhook_id
string
A unique identifier for this webhook in a UUID format.
Example: 123e4567-e89b-12d3-a456-426614174000
event
string
The name of the event that triggered this webhook.
Value: signatures.completed
message
string
Provides a human-readable message indicating the result of the webhook event.
Value: The document has been signed by all signers.
timestamp
string
The exact date and time when the webhook was triggered, formatted as an ISO 8601 string in UTC.
Example2024-12-01T07:19:30.443Z
service
string
The type of service this webhook relates to.
Possible values: signature or notarization
case_id
string
The unique identifier for the case in a UUID format.
Example123e4567-e89b-12d3-a456-426614174000
document_id
string
The unique identifier for the document in a UUID format.
Example123e4567-e89b-12d3-a456-426614174000
document_status
string
Indicates the current status of the document.
Possible valuesdraftsignatures-requestedwaiting-for-verificationsnotarization-started or completed
signers
array
List of signers included in this case.
client_reference
string
Your custom reference string provided during case creation.
Example: REF-2025-001
{
  "webhook_id": "123e4567-e89b-12d3-a456-426614174000",
  "event": "signatures.completed",
  "message": "The document has been signed by all signers.",
  "timestamp": "2024-10-18T12:00:00Z",
  "service": "signature",
  "case_id": "123e4567-e89b-12d3-a456-426614174000",
  "document_id": "456e1234-e89b-12d3-a456-426614174001",
  "document_status": "signatures-completed",
  "signers": [
    {
      "first_name": "John",
      "last_name": "Doe",
      "email": "john@example.com",
      "signed_at": "2024-12-01T07:19:30.443Z"
    }
  ],
  "client_reference": "REF-2025-001"
}