Beglaubigt.de API
Events

Appointment Confirmed

Understanding the Event

The appointment.confirmed event is automatically triggered when the date for the notary appointment is confirmed.

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: appointment.confirmed

messagestring

Provides a human-readable message indicating the result of the webhook event.
Value: The notary appointment has been confirmed.

incorporation_idstring

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

namestring

The legal name of the company.
Example: Acme Holdings GmbH

typestring

The type of company incorporated.
Possible values: gmbh or ug

capitalnumber

The total share capital of the company in EUR.
Example: 25000

statusstring

The status of the incorporation.
Value: appointment-confirmed

urlstring

The URL of the incorporation.
Examplehttps://app.beglaubigt.de/incorporate/acme-holding-gmbh/123e4567-e89b-12d3-a456-426614174000

notarizationobject

Details about the notarization process.

client_referencestring

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

timestampstring

The exact date and time when the webhook was triggered, formatted as an ISO 8601 string in UTC.
Example2025-06-01T08:00:00.443Z

Response
{
    "webhook_id": "123e4567-e89b-12d3-a456-426614174000",
    "event": "appointment.confirmed",
    "message": "The notary appointment has been confirmed.",
    "incorporation_id": "123e4567-e89b-12d3-a456-426614174000",
    "name": "Acme Holdings GmbH",
    "type": "gmbh",
    "capital": 12500,
    "status": "appointment-confirmed",
    "url": "https://app.beglaubigt.de/incorporate/acme-holding-gmbh/123e4567-e89b-12d3-a456-426614174000",
    "notarization": {
        "type": "online",
        "express": false,
		"preferred_location": "Berlin",
        "preferred_timeframe": 7,
        "date": "2025-05-16",
        "time": "14:30",
        "appointment_status": "confirmed",
        "notary": {
            "office": "Notariat Schiller & Partner",
            "name": "Dr. Anna Becker",
            "email": "dr.becker@notariat-schiller.de",
            "phone": "+49 89 12345678",
            "address": "Schillerstraße 15, 10117, Berlin"
        }
    },
    "client_reference": "REF-2025-001",
    "timestamp": "2025-10-18T12:00:00Z"
}

On this page