curl --request GET \
--url https://api.mijnklantportaal.nl/v1/webhooks/{webhookId} \
--header 'Authorization: Bearer <token>'{
"id": "wbh_abc12345def678",
"type": "customer-created",
"url": "https://mijnklantportaal.nl/webhook-incoming",
"secret": "OUJX2prdBbJxR77BZlGz",
"createdAt": "2024-04-29T21:00:00+02:00"
}curl --request GET \
--url https://api.mijnklantportaal.nl/v1/webhooks/{webhookId} \
--header 'Authorization: Bearer <token>'{
"id": "wbh_abc12345def678",
"type": "customer-created",
"url": "https://mijnklantportaal.nl/webhook-incoming",
"secret": "OUJX2prdBbJxR77BZlGz",
"createdAt": "2024-04-29T21:00:00+02:00"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
ID of the Webhook record
Getting the requested Webhook record
Webhook record
ID of the Webhook record, always starting with wbh_.
"wbh_abc12345def678"
Type of event what will trigger this webhook.
"customer-created"
The URL which gets triggered
"https://mijnklantportaal.nl/webhook-incoming"
A random string which will be added to the X-Webhook-Signature header of the webhook call. With this secret, you can validate if the request is coming from MijnKlantportaal.
"OUJX2prdBbJxR77BZlGz"
Date and time when the payment was started. Written in ATOM format.
"2024-04-29T21:00:00+02:00"