EventDelivery
Event delivery.
type EventDelivery implements Node {
id: ID!
createdAt: DateTime!
status: EventDeliveryStatusEnum!
eventType: WebhookEventTypeEnum!
attempts(
sortBy: EventDeliveryAttemptSortingInput
before: String
after: String
first: Int
last: Int
): EventDeliveryAttemptCountableConnection
payload: String
}
Fields
EventDelivery.id
● ID!
non-null scalar miscellaneous
The ID of an event delivery.
EventDelivery.createdAt
● DateTime!
non-null scalar miscellaneous
Creation time of an event delivery.
EventDelivery.status
● EventDeliveryStatusEnum!
non-null enum webhooks
Event delivery status.
EventDelivery.eventType
● WebhookEventTypeEnum!
non-null enum webhooks
Webhook event type.
EventDelivery.attempts
● EventDeliveryAttemptCountableConnection
object miscellaneous
Event delivery attempts.
EventDelivery.attempts.sortBy
●EventDeliveryAttemptSortingInput
input webhooksEvent delivery sorter
EventDelivery.attempts.before
● String
scalar miscellaneous
Return the elements in the list that come before the specified cursor.
EventDelivery.attempts.after
● String
scalar miscellaneous
Return the elements in the list that come after the specified cursor.
EventDelivery.attempts.first
● Int
scalar miscellaneous
Retrieve the first n elements from the list. Note that the system only allows fetching a maximum of 100 objects in a single query.
EventDelivery.attempts.last
● Int
scalar miscellaneous
Retrieve the last n elements from the list. Note that the system only allows fetching a maximum of 100 objects in a single query.
EventDelivery.payload
● String
scalar miscellaneous
Event payload.
Interfaces
Node
interface miscellaneous
An object with an ID
Member Of
EventDeliveryCountableEdge
object ● EventDeliveryRetry
object ● WebhookTrigger
object