Webhooks
Create a new webhook endpoint
Create a new webhook endpoint to receive events.
post/v1/webhooks/endpoints
Headers
X-API-Keystring
API key
Request body
Example request
{
"url": "https://api.example.com/webhooks",
"description": "Production webhook endpoint",
"filterTypes": [
"customer.created",
"customer.updated"
]
}Response
Webhook endpoint created successfully
Example response
{
"id": "ep_1234567890abcdef",
"url": "https://api.example.com/webhooks",
"description": "Production webhook endpoint",
"filterTypes": [
"customer.created",
"customer.updated"
],
"createdAt": "2026-09-15T10:30:00Z",
"updatedAt": "2026-09-15T10:30:00Z"
}Changes
No recorded changes to this endpoint across all 1 revision of this API.