Webhooks
Retrieve a webhook
Return a single webhook belonging to your account.
Authorization
ApiKey AuthorizationBearer <token>
API key issued to the partner, sent with the Bearer prefix — for example: Authorization: Bearer sk_live_abc123.
In: header
Path Parameters
id*integer
Numeric ID of the webhook, as returned by list or create.
id*string
Response Body
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/webhooks/string/"{ "id": 12, "event": "checkout.succeeded", "endpoint_url": "https://partner.example.com/hooks/suqo", "is_active": true, "created_at": "2026-07-03T10:15:00Z"}Retrieve the signing secret GET
Return the account's webhook signing secret, minting it on first read. Every delivery we send is signed with it; use it to verify the signature header on your endpoint. It is not rotatable through this API.
Replace a webhook PUT
Overwrite a webhook's event, endpoint and active flag.