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

# Delete a registered webhook URL

> Removes a webhook URL from the organization's registered endpoints. Once deleted, the URL will no longer receive event notifications from the platform.



## OpenAPI

````yaml api-reference/webhooks.yaml post /urls/delete
openapi: 3.0.3
info:
  title: webhooks
  description: >-
    The Webhooks service listens to pub/sub topics for platform events and
    forwards them to client systems. It ensures clients receive real-time
    notifications via their configured webhook URLs.
  version: 1.0.0
servers:
  - url: https://webhooks.platform.arb.inc
security: []
tags:
  - name: /
  - name: urls
paths:
  /urls/delete:
    post:
      tags:
        - urls
      summary: Delete a registered webhook URL
      description: >-
        Removes a webhook URL from the organization's registered endpoints. Once
        deleted, the URL will no longer receive event notifications from the
        platform.
      operationId: deleteWebhookUrl
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - url
              properties:
                url:
                  type: string
                  format: uri
                  description: >-
                    The webhook URL to delete from the organization's registered
                    endpoints
                  example: https://api.example.com/webhooks/arb-platform
      responses:
        '200':
          description: URL successfully deleted
          content:
            text/plain:
              schema:
                type: string
                example: URL successfully deleted
        '404':
          description: >-
            The specified URL was not found in the organization's registered
            webhooks
          content:
            text/plain:
              schema:
                type: string
                example: url not found
        '410':
          description: >-
            Webhooks feature is only available to organizations, not individual
            users
          content:
            text/plain:
              schema:
                type: string
                example: Webhooks are only available to organizations
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      description: access token
      scheme: bearer
      bearerFormat: JWT

````