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

# Delete Webhook Subscription

> Delete one of your webhook subscriptions.



## OpenAPI

````yaml /openapi.json delete /api/webhook-subscriptions/{id}
openapi: 3.1.0
info:
  title: RBA Exchange Rates API
  description: >-
    Official Reserve Bank of Australia (RBA) exchange rate data through a modern
    REST API. Transforms publicly available RBA data into clean JSON endpoints
    for Australian businesses and developers who need reliable AUD exchange
    rates.
  version: 1.0.0
  license:
    name: MIT
  contact:
    url: https://www.exchangeratesapi.com.au
servers:
  - url: https://api.exchangeratesapi.com.au
    description: Production API
security: []
paths:
  /api/webhook-subscriptions/{id}:
    servers:
      - url: https://auth.exchangeratesapi.com.au
        description: Auth/account host
    delete:
      summary: Delete Webhook Subscription
      description: Delete one of your webhook subscriptions.
      operationId: deleteWebhookSubscription
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Deleted
          content:
            application/json:
              example:
                success: true
                message: Webhook deleted
        '401':
          description: Missing or invalid API key (or dashboard session)
        '404':
          description: Not found or not owned by you
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: API key authentication using Bearer token

````