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

> Deactivate a webhook and permanently stop all event deliveries to its URL. You can register a new webhook afterward.

# Deactivate webhook



## OpenAPI

````yaml delete /v1/webhooks/{webhookId}
openapi: 3.0.0
info:
  title: Partner API
  description: Public API for partner integrations
  version: '1.0'
  contact: {}
servers:
  - url: https://api-staging.respondent.io
security: []
tags: []
paths:
  /v1/webhooks/{webhookId}:
    delete:
      tags:
        - webhooks
      summary: Deactivate webhook
      operationId: WebhooksController_deactivate
      parameters:
        - name: x-api-key
          in: header
          required: true
          schema:
            type: string
        - name: x-api-secret
          in: header
          required: true
          schema:
            type: string
        - name: webhookId
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''

````