Webhooks
List webhook subscriptions
Returns the subscriptions owned by the calling API key. Excludes soft-deleted rows. Use the standard cursor-pagination parameters — see Developer Guide → Pagination.
get/api/v1/webhook-subscriptions
Query parameters
limitinteger
cursorstring
Response
Paginated subscription list.
Example response
{
"data": {
"items": [
{
"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."
}
]
}
}