webhookAttemptsForEvent
QUERY

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

Arguments

Name
Description
eventId* 
String!
The identifier for the Event that generated the attempts.
after 
String
An opaque cursor to the earlier bounding webhook attempt.Resulting webhook attempts will succeed this cursor.
before 
String
An opaque cursor to the later bounding webhook attempt.Resulting webhook attempts will precede this cursor.
The additional WebhookAttempt-specific criteria to filter by.
first 
Int
The upper limit of webhook attempts to return from the start of the list.Defaults to 10 if neither first nor last are specified. Excess webhook attempts 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 attempts to return from the end of the list.Excess webhook attempts 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 attempts.

Sample

GraphQL
query ($eventId: String!) {
  webhookAttemptsForEvent(eventId: $eventId) {
    edges {
      cursor
    }
  }
}