webhookSubscriptions
QUERY

A page of webhook subscriptions matching the specified criteria.A maximum of 100 webhook subscriptions can be returned in a single page. Additional webhook subscriptions can be queried using a pagination cursor.The result list is returned in ascending creation date & time order. It starts from the earliest known subscription if no pagination arguments are provided.

Arguments

Name
Description
schemeId* 
String!
The scheme ID of the webhook subscription's events.Currently, only seekAnz and seekAnzPublicTest are supported.
after 
String
An opaque cursor to the earlier bounding webhook subscription.Resulting webhook subscriptions will succeed this cursor.
before 
String
An opaque cursor to the later bounding webhook subscription.Resulting webhook subscriptions will precede this cursor.
The additional WebhookSubscription-specific criteria to filter by.
first 
Int
The upper limit of webhook subscriptions to return from the start of the list.Defaults to 10 if neither first nor last are specified. Excess webhook subscriptions will be trimmed from the end of the list.first and last cannot be specified in the same query.
last 
Int
The upper limit of webhook subscriptions to return from the end of the list.Excess webhook subscriptions will be trimmed from the start of the list.first and last cannot be specified in the same query.

Result

Name
Description
A page of webhook subscriptions.

Sample

GraphQL
query ($schemeId: String!) {
  webhookSubscriptions(schemeId: $schemeId) {
    edges {
      cursor
    }
  }
}