WebhookCollectionClient
Hierarchy
- ResourceCollectionClient
- WebhookCollectionClient
Index
Properties
inheritedapifyClient
inheritedbaseUrl
inheritedhttpClient
optionalinheritedid
optionalinheritedparams
inheritedpublicBaseUrl
inheritedresourcePath
optionalinheritedsafeId
inheritedurl
Methods
create
Parameters
optionalwebhook: WebhookUpdateData
Returns Promise<Webhook>
list
https://docs.apify.com/api/v2#/reference/webhooks/webhook-collection/get-list-of-webhooks
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: WebhookCollectionListOptions = {}
Returns PaginatedIterator<Omit<Webhook, payloadTemplate | headersTemplate>>
https://docs.apify.com/api/v2#/reference/webhooks/webhook-collection/create-webhook