OBJECT

WebhookMutation

Mutations that act on Webhooks.

link GraphQL Schema definition

  • type WebhookMutation {
  • # Activates a Webhook.
  • #
  • # Arguments
  • # id: The data to use to activate the Webhook.
  • activate(id: Int!): SuccessResult
  • # Deactivates a Webhook.
  • #
  • # Arguments
  • # id: The data to use to deactivate the Webhook.
  • deactivate(id: Int!): SuccessResult
  • # Updates a Webhook.
  • #
  • # Arguments
  • # webhook: The data to use to update the Webhook.
  • update(webhook: WebhookUpdate!): SuccessResult
  • # Create a new Webhook.
  • #
  • # Arguments
  • # webhook: The data to use to create the new Webhook.
  • create(webhook: WebhookCreate!): SuccessResult
  • }