Webhooks
Read a webhook subscription
Returns one subscription. secret_prefix (the first 6 chars of the HMAC secret) is exposed for human disambiguation; the full secret is never returned by a read.
get/api/v1/webhook-subscriptions/{id}
Path parameters
idstring required
Example:whsub_3f7a9b1c8d2e4f5a6b7c8d9e0f1a2b3c
The public subscription id returned by POST /api/v1/webhook-subscriptions — shaped whsub_<32 hex chars>.
Response
Subscription found.
Example response
{
"data": {
"id": "whsub_3f7a9b1c8d2e4f5a6b7c8d9e0f1a2b3c",
"url": "https://hooks.example.com/prezent",
"secret_prefix": "whsec_",
"events": [
"autogeneration.completed",
"autogeneration.failed"
],
"description": "Push completions into our deal-room worker."
}
}