> ## Documentation Index
> Fetch the complete documentation index at: https://dev.nimbo-x.com/llms.txt
> Use this file to discover all available pages before exploring further.

# DELETE /webhooks/{webhook_id}



## OpenAPI

````yaml /openapi/nimbo_webhooks.yml delete /webhooks/{webhook_id}
openapi: 3.0.0
info:
  title: Nimbo webhooks
  version: 1.0.0
  description: >-
    Nimbo API reference. Use the API host and integration access provided by
    Nimbo.
servers:
  - url: https://api.example.test
    description: Reference only; confirm your integration host with Nimbo
security: []
paths:
  /webhooks/{webhook_id}:
    delete:
      summary: DELETE /webhooks/{webhook_id}
      operationId: legacy_nimbo_webhooks_delete__webhooks_webhook_id
      parameters:
        - name: webhook_id
          in: path
          required: true
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                nimbo_access_token:
                  type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  deleted:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: integer
          description: Successful response

````