Skip to content

deleteWebhook

Delete a webhook.

Arguments

Argument Type Description
input (required) DeleteWebhookInput! The webhook to delete from the account.

Returns

Void

Sample

mutation DeleteWebhook($input: DeleteWebhookInput!) {
  deleteWebhook(input: $input)
}
{
  "input": {
    "id": 0
  }
}
{
  "data": {
    "deleteWebhook": "example-string"
  }
}