List Webhooks
Returns a paginated list of webhooks for the account, sorted by most recently created first. Use agentId to filter by agent and active to filter by enabled/disabled status. Use page and size to navigate through results.
Query parameters
Filter webhooks by the agent they are scoped to. Obtained from the agentId field in the agent list or creation response. Omit to return webhooks across all agents.
Filter webhooks by their active status. true returns only webhooks currently enabled and receiving event deliveries. false returns only disabled webhooks. Defaults to true.
Zero-based page number to retrieve. Use 0 for the first page. Must be 0 or greater.
Number of webhooks to return per page. Must be 1 or greater. Defaults to 10.
Response
OK
Example response
{
"data": [
{
"workspaceId": "org_BUbkx3PsbzQm5V10",
"webhookId": "wh_BUbkx3PsbzQm5V10",
"name": "Call Events - Production",
"agentId": "D5D0p7TUs66TTAEAx",
"active": true,
"secret": "mK9vXq2pL8nR5tY1wA3sD6fH0jC4bE7u"
}
],
"size": 20,
"totalCount": 125,
"totalPages": 7,
"hasNext": true
}Changes
No recorded changes to this endpoint across all 1 revision of this API.