v1
latestOpenAPI 3.1.02026-07-228956435.8 KBWebhook endpoints
Get a webhook endpoint
Retrieves a webhook endpoint by its id. Only endpoints matching the live or test mode of the API key are visible; deleted endpoints return a 404 Not Found error. secret is always null outside creation.
get/webhook_endpoints/{id}
Path parameters
idstring required
The id of the webhook endpoint to retrieve.
Response
The webhook endpoint. secret is always null outside creation.
Example response
{
"id": "we_M6yrvOepCe3Rqp8B",
"created_at": "2021-05-17T17:04:10.284Z",
"description": "Webhook endpoint for payment events.",
"enabled_events": [
"link.credentials_changed"
],
"mode": "live",
"name": "My webhook endpoint",
"secret": "whsec_live_aBcDeFgHiJkLmNoPqRsTuVwXyZ",
"status": "enabled",
"url": "https://my.webhook.endpoint"
}