WebhookDispatchCollectionClient
Hierarchy
- ResourceCollectionClient
- WebhookDispatchCollectionClient
Index
Properties
inheritedapifyClient
inheritedbaseUrl
inheritedhttpClient
optionalinheritedid
optionalinheritedparams
inheritedpublicBaseUrl
inheritedresourcePath
optionalinheritedsafeId
inheritedurl
Methods
list
Lists all webhook dispatches.
Awaiting the return value (as you would with a Promise) will result in a single API call. The amount of fetched items in a single API call is limited.
const paginatedList = await client.list(options);Asynchronous iteration is also supported. This will fetch additional pages if needed until all items are retrieved.
for await (const singleItem of client.list(options)) {...}Parameters
options: WebhookDispatchCollectionListOptions = {}
Pagination and sorting options.
Returns PaginatedIterator<WebhookDispatch>
A paginated iterator of webhook dispatches.
Client for managing the collection of webhook dispatches.
Webhook dispatches represent individual notifications sent by a webhook. This client provides methods to list all dispatches for a specific webhook.
https://docs.apify.com/platform/integrations/webhooks