OBJECT

FormWebhookMutation

Mutations that act on Form Webhooks.

link GraphQL Schema definition

  • type FormWebhookMutation {
  • # Activates a Form Webhook.
  • #
  • # Arguments
  • # id: The data to use to activate the Form Webhook.
  • activate(id: Int!): SuccessResult
  • # Deactivates a Form Webhook.
  • #
  • # Arguments
  • # id: The data to use to deactivate the Form Webhook.
  • deactivate(id: Int!): SuccessResult
  • # Updates a Form Webhook.
  • #
  • # Arguments
  • # form_webhook: The data to use to update the Form Webhook.
  • update(form_webhook: FormWebhookUpdate!): SuccessResult
  • # Create a new Form Webhook.
  • #
  • # Arguments
  • # form_webhook: The data to use to create the new Form Webhook.
  • create(form_webhook: FormWebhookCreate!): SuccessResult
  • }