Skip to main content

EventDelivery Object

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

id ● ID!

The ID of an event delivery.

createdAt ● DateTime!

Creation time of an event delivery.

status ● EventDeliveryStatusEnum!

Event delivery status.

eventType ● WebhookEventTypeEnum!

Webhook event type.

attempts ● EventDeliveryAttemptCountableConnection

Event delivery attempts.

sortBy ● EventDeliveryAttemptSortingInput

Event delivery sorter

before ● String

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

after ● String

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

first ● Int

Retrieve the first n elements from the list. Note that the system only allows fetching a maximum of 100 objects in a single query.

last ● Int

Retrieve the last n elements from the list. Note that the system only allows fetching a maximum of 100 objects in a single query.

payload ● String

Event payload.

Interfaces

Node

An object with an ID

Member Of

EventDeliveryCountableEdge object ● EventDeliveryRetry object ● WebhookTrigger object