> ## 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.

# List all registered webhook URLs

> Retrieves all webhook URLs currently registered for the authenticated organization. Returns metadata including registration timestamp and the user who registered each URL.



## OpenAPI

````yaml api-reference/webhooks.yaml post /urls/list
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/list:
    post:
      tags:
        - urls
      summary: List all registered webhook URLs
      description: >-
        Retrieves all webhook URLs currently registered for the authenticated
        organization. Returns metadata including registration timestamp and the
        user who registered each URL.
      operationId: listWebhookUrls
      responses:
        '200':
          description: Successfully retrieved list of registered webhook URLs
          content:
            application/json:
              schema:
                type: object
                properties:
                  urls:
                    type: array
                    description: Array of registered webhook URLs with metadata
                    items:
                      type: object
                      properties:
                        created:
                          type: string
                          format: date-time
                          description: UTC timestamp when the webhook URL was registered
                          example: '2025-08-25T14:30:00.000Z'
                        createdBy:
                          type: string
                          format: uuid
                          description: User ID of the person who registered this webhook
                          example: 3f2504e0-4f89-11d3-9a0c-0305e82c3301
                        url:
                          type: string
                          format: uri
                          description: The webhook callback URL registered by the client
                          example: https://api.example.com/webhooks/arb-platform
        '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

````