WebhookEvent
The events that the webhook is subscribed to
Fields
first_failed_at
· ISO8601DateTime
· The date and time that the webhook first failed last_failed_at
· ISO8601DateTime
· The date and time that the webhook last failed 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!}