> ## Documentation Index
> Fetch the complete documentation index at: https://docs.codex.io/llms.txt
> Use this file to discover all available pages before exploring further.

# deleteWebhooks

> Delete multiple webhooks.

<div data-generated>
  ## GraphQL

  ```
  type Mutation {
    # Requires a Growth or Enterprise plan.
    deleteWebhooks(
      input: DeleteWebhooksInput!
    ): DeleteWebhooksOutput
  }

  type DeleteWebhooksOutput {
    deletedIds: [String]
  }

  input DeleteWebhooksInput {
    webhookIds: [String!]!
  }
  ```
</div>

### Example

<a href="/explore" target="_blank" rel="noopener noreferrer">Test this query in the Explorer →</a>

```graphql theme={null}
mutation {
  deleteWebhooks(
    input: { webhookIds: ["your-webhook-id"] }
  ) {
    deletedIds
  }
}
```
