External DocumentationTo learn more, visit the Digital.ai Agility documentation.
Actions
List Webhooks
Retrieve a list of webhooks subscriptions.

Preview this Workflow on desktop
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
| Parameter | Description |
|---|---|
| Page Size | The maximum number of webhooks to return per page. Defaults to 25. |
| Page Start | The number of the page to start retrieving results from. Defaults to 0. |
{
"total": 1,
"pageSize": 25,
"pageStart": 0,
"_type": "WebhookSubscription",
"results": [
{
"id": "336d997f-d9fa-4612-80e8-9f41a4b41352",
"webhookId": "Webhook indentifier",
"url": "https://matchedUrl.com",
"description": "Short description of the webhook subscription",
"enabled": true,
"eventTypes": [],
"lastResponseAt": "0001-01-01T00:00:00Z",
"retryCount": 0,
"createdAt": "2018-09-27T20:28:41.3829451Z",
"updatedAt": "2018-09-27T20:28:41.3829451Z",
"createdBy": "Member:20"
}
]
}
Was this page helpful?