OBJECT

WebhookEvent

The events that the webhook is subscribed to

link GraphQL Schema definition

  • type WebhookEvent {
  • # The date and time that the webhook was created
  • created_at: ISO8601DateTime!
  • # The type of webhook
  • event_type: String!
  • # 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!
  • }