Skip to main content
Version: 3.x

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

The ID of an event delivery.

EventDelivery.createdAt ● DateTime! non-null scalar

Creation time of an event delivery.

EventDelivery.status ● EventDeliveryStatusEnum! non-null enum

Event delivery status.

EventDelivery.eventType ● WebhookEventTypeEnum! non-null enum

Webhook event type.

EventDelivery.attempts ● EventDeliveryAttemptCountableConnection object

Event delivery attempts.

EventDelivery.attempts.sortBy ● EventDeliveryAttemptSortingInput input

Event delivery sorter

EventDelivery.attempts.before ● String scalar

Return the elements in the list that come before the specified cursor.

EventDelivery.attempts.after ● String scalar

Return the elements in the list that come after the specified cursor.

EventDelivery.attempts.first ● Int scalar

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

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

Event payload.

Interfaces

Node interface

An object with an ID

Member of

EventDeliveryCountableEdge object ● EventDeliveryRetry object ● WebhookTrigger object


Was this page helpful?