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

# List all webhook endpoints

> Deprecated: use GET /v2/webhooks for bounded opaque cursor pagination.



## OpenAPI

````yaml /openapi.json get /v1/webhooks
openapi: 3.0.0
info:
  contact: {}
  description: >-
    Comprehensive payment platform API supporting fiat and crypto payments,
    currency conversion, and compliance management
  title: Zuba Payment Platform API
  version: '1.0'
servers: []
security: []
tags:
  - description: Manage M2M API keys and credentials
    name: API Keys
  - description: Internal ledger accounts and transactions
    name: Ledger
  - description: Handle incoming payments and deposits
    name: Pay-ins
  - description: Manage payouts, beneficiaries, and SEPA transfers
    name: Payouts
  - description: Manage outbound webhook endpoints and deliveries
    name: Webhooks
paths:
  /v1/webhooks:
    get:
      tags:
        - Webhooks
      summary: List all webhook endpoints
      description: 'Deprecated: use GET /v2/webhooks for bounded opaque cursor pagination.'
      operationId: WebhookController_list
      parameters: []
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/WebhookEndpointResponseDto'
                type: array
          description: List of webhook endpoints (secrets masked)
        '401':
          description: Unauthorized
      deprecated: true
      security:
        - bearer: []
components:
  schemas:
    WebhookEndpointResponseDto:
      properties:
        createdAt:
          description: Creation timestamp
          type: string
        enabled:
          description: Whether the endpoint is enabled
          type: boolean
        events:
          description: Subscribed event types
          items:
            enum:
              - payout.processing
              - payout.paid
              - payout.failed
              - payout.reverted
              - payout.cancelled
              - webhook.test
              - account.created
            type: string
          type: array
        id:
          description: Endpoint ID
          type: string
        signingSecretHint:
          description: Last 4 characters of the signing secret
          example: ab1f
          type: string
        updatedAt:
          description: Last update timestamp
          type: string
        url:
          description: Webhook URL
          type: string
      required:
        - id
        - url
        - events
        - enabled
        - signingSecretHint
        - createdAt
        - updatedAt
      type: object
  securitySchemes:
    bearer:
      bearerFormat: JWT
      description: Enter Auth0 JWT token
      scheme: bearer
      type: http

````