Skip to content

WebhookEvent

The events that the webhook is subscribed to

Fields

created_at · ISO8601DateTime! · required · The date and time that the webhook was created
event_type · String! · required · The type of webhook
first_failed_at · ISO8601DateTime · The date and time that the webhook first failed
id · ID! · required · The unique identifier of the webhook
last_failed_at · ISO8601DateTime · The date and time that the webhook last failed
retry_count · Int! · required · The number of times the webhook has been retried
updated_at · ISO8601DateTime! · required · The date and time that the webhook was last updated
webhook · Webhook! · required · The webhook that the event is associated with

Used By

Definition

"""
The events that the webhook is subscribed to
"""
type WebhookEvent {
"""
The date and time that the webhook was created
"""
created_at: ISO8601DateTime!
"""
The type of webhook
"""
event_type: String!
"""
The date and time that the webhook first failed
"""
first_failed_at: ISO8601DateTime
"""
The unique identifier of the webhook
"""
id: ID!
"""
The date and time that the webhook last failed
"""
last_failed_at: ISO8601DateTime
"""
The number of times the webhook has been retried
"""
retry_count: Int!
"""
The date and time that the webhook was last updated
"""
updated_at: ISO8601DateTime!
"""
The webhook that the event is associated with
"""
webhook: Webhook!
}