OBJECT

SentWebhook

The record of a sent webhook

link GraphQL Schema definition

  • type SentWebhook {
  • # The datetime that the webhook was sent
  • created_at: String!
  • # The type of webhook
  • event_type: String
  • # Whether the webhook is enabled or not
  • http_response_status: String
  • # The unique identifier of the webhook
  • id: ID!
  • # The id of the resource the sent webhook related to
  • resource_id: ID
  • # The type of resource the sent webhook related to
  • resource_id_type: String
  • # The URL that the webhook was sent to
  • url: String
  • # The configured webhook thst was sent
  • webhook_id: ID
  • }