cURL
curl --request POST \ --url https://api.example.com/webhook \ --header 'Content-Type: application/json' \ --header 'x-api-key: <api-key>' \ --data ' { "event": "onboarding.updated", "data": { "status": "PENDING", "publicIdentifier": "<string>" } } '
Everday will send a POST request to this endpoint whenever a relevant event occurs. Clients must implement a listener to process these events.
API key required to receive webhooks.
The type of webhook event.
onboarding.updated
Show child attributes
Webhook received successfully.