GET/event_subscriptions

List event subscriptions

Lists event subscriptions configured to receive webhook notifications. Use cursor to continue through the results and idempotency_key to filter for a specific subscription.

3 parameters
cursorstringoptional
Returns the page of event subscriptions after this cursor.
limitintegeroptional
Maximum number of subscriptions to return. Must be between 1 and 100. Defaults to 100 when omitted.
Default:100
idempotency_keystringoptional
Filter for the subscription with this idempotency key. Must be between 1 and 200 characters.

3 status codes
200Returns a page of event subscription objects and a `next_cursor` for retrieving the next page.
dataarray<EventSubscription>required
The contents of the list.
next_cursorstringrequired
A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next page of results. If there are no more results, the value will be `null`.
4XXReturned when the request has a client-side error.
5XXReturned when the request encounters a server-side error.

Error handling

limit must be between 1 and 100, and idempotency_key must be between 1 and 200 characters when provided.