Get Subscription
GET
GET
https://api.atzcrm.com/v1/subscribe/:idRetrieve the details of a webhook subscription by its unique id.
Request
GET
GET /v1/subscribe/:id
Path Parameter
- id
numberReplace
:idwith the webhook subscription id.
Response
200
Body
- id
numberExample: 7
- account_id
numberExample: 1
- event_name
stringExample: candidate.deleted
- target_url
stringExample: https://xyz_updated.com
- source
stringExample: public
- created_at
numberExample: 1764200594
- updated_at
numberExample: 1764200981
404
Error
- Subscription not found
Response Example
{
"id": 7,
"account_id": 1,
"event_name": "candidate.deleted",
"target_url": "https://xyz_updated.com",
"source": "public",
"created_at": 1764200594,
"updated_at": 1764200981
}