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

# List webhook endpoints

> Lists workspace webhook endpoint metadata.



## OpenAPI

````yaml /api-reference/openapi.json get /webhook-endpoints
openapi: 3.0.3
info:
  description: >-
    Generated from Ando's accepted public API v1 contract metadata. Current
    routes preserve legacy /api/v1 response envelopes while converging on the
    public https://api.ando.so/v1 shape.
  title: Ando Public API
  version: v1
servers:
  - description: Canonical public API host.
    url: https://api.ando.so/v1
security: []
tags:
  - description: Call detail and transcript routes.
    name: Calls
  - description: Clipboard detail routes.
    name: Clipboards
  - description: >-
      Workspace member detail routes. Existing v1 paths keep member
      compatibility spellings.
    name: Members
  - description: Message and conversation message routes.
    name: Messages
  - description: Public realtime connection and protocol routes.
    name: Realtime
  - description: Search routes.
    name: Search
  - description: Task routes.
    name: Tasks
  - description: Outbound webhook endpoint and delivery routes.
    name: Webhooks
paths:
  /webhook-endpoints:
    get:
      tags:
        - Webhooks
      summary: List webhook endpoints
      description: Lists workspace webhook endpoint metadata.
      operationId: listWebhookEndpoints
      responses:
        '200':
          content:
            application/json:
              examples:
                endpoints:
                  summary: Webhook endpoints.
                  value:
                    data:
                      items:
                        - object: webhook_endpoint
                          id: wep_01jzn7e61x3a7v9h2r7t2m3q4p
                          workspace_id: workspace_01jzn7e61x3a7v9h2r7t2m3q4p
                          name: Production receiver
                          url: https://example.com/ando/webhooks
                          enabled_events:
                            - webhook.test
                            - message.created
                            - message.updated
                            - conversation.membership.created
                            - conversation.archived
                            - conversation.unarchived
                            - call.started
                            - call.ended
                            - call.updated
                            - call.transcript.updated
                          delivery_scope:
                            type: workspace_member
                            actor_workspace_membership_id: wsm_01jzn7e61x3a7v9h2r7t2m3q4p
                            direct_message_delivery_enabled: false
                          status: active
                          signing_secret_prefix: example
                          previous_signing_secret_expires_at: null
                          disabled_at: null
                          created_at: '2026-05-27T08:00:00.000Z'
                          updated_at: '2026-05-27T08:00:00.000Z'
                    items:
                      - object: webhook_endpoint
                        id: wep_01jzn7e61x3a7v9h2r7t2m3q4p
                        workspace_id: workspace_01jzn7e61x3a7v9h2r7t2m3q4p
                        name: Production receiver
                        url: https://example.com/ando/webhooks
                        enabled_events:
                          - webhook.test
                          - message.created
                          - message.updated
                          - conversation.membership.created
                          - conversation.archived
                          - conversation.unarchived
                          - call.started
                          - call.ended
                          - call.updated
                          - call.transcript.updated
                        delivery_scope:
                          type: workspace_member
                          actor_workspace_membership_id: wsm_01jzn7e61x3a7v9h2r7t2m3q4p
                          direct_message_delivery_enabled: false
                        status: active
                        signing_secret_prefix: example
                        previous_signing_secret_expires_at: null
                        disabled_at: null
                        created_at: '2026-05-27T08:00:00.000Z'
                        updated_at: '2026-05-27T08:00:00.000Z'
              schema:
                $ref: '#/components/schemas/WebhookEndpointListResponse'
          description: Webhook endpoints.
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '409':
          $ref: '#/components/responses/Conflict'
        '429':
          $ref: '#/components/responses/RateLimited'
        '500':
          $ref: '#/components/responses/InternalError'
      security:
        - AndoApiKey: []
        - BearerApiKey: []
components:
  schemas:
    WebhookEndpointListResponse:
      additionalProperties: false
      description: Webhook endpoint list response.
      properties:
        data:
          additionalProperties: false
          description: Standard public response data. New clients should read data.items.
          properties:
            items:
              description: Webhook endpoints.
              items:
                $ref: '#/components/schemas/WebhookEndpoint'
              type: array
          required:
            - items
          type: object
        items:
          description: >-
            Compatibility alias for data.items. New clients should read
            data.items.
          items:
            $ref: '#/components/schemas/WebhookEndpoint'
          type: array
          deprecated: true
      required:
        - data
        - items
      type: object
    WebhookEndpoint:
      additionalProperties: false
      description: >-
        Webhook endpoint metadata. Signing secret plaintext is never returned
        here.
      properties:
        created_at:
          description: Endpoint creation timestamp.
          type: string
          example: '2026-05-14T08:00:00.000Z'
          format: date-time
        delivery_scope:
          $ref: '#/components/schemas/WebhookEndpointDeliveryScope'
        disabled_at:
          description: Endpoint disabled timestamp.
          type: string
          format: date-time
          nullable: true
        enabled_events:
          description: Product event types delivered to this endpoint.
          items:
            description: Webhook event type.
            enum:
              - message.created
              - message.updated
              - conversation.membership.created
              - conversation.archived
              - conversation.unarchived
              - call.started
              - call.ended
              - call.updated
              - call.transcript.updated
              - webhook.test
            type: string
          type: array
        id:
          description: Webhook endpoint identifier.
          type: string
          example: 01jzn7e61x3a7v9h2r7t2m3q4p
        name:
          description: Endpoint label.
          type: string
          nullable: true
        object:
          description: Object type.
          enum:
            - webhook_endpoint
          type: string
        previous_signing_secret_expires_at:
          description: Previous secret expiration timestamp.
          type: string
          format: date-time
          nullable: true
        signing_secret_prefix:
          description: Display-safe prefix of the active signing secret.
          type: string
        status:
          description: Endpoint status.
          enum:
            - active
            - disabled
          type: string
        updated_at:
          description: Last update timestamp.
          type: string
          example: '2026-05-14T08:00:00.000Z'
          format: date-time
        url:
          description: Receiver URL.
          type: string
        workspace_id:
          description: Workspace identifier.
          type: string
          example: 01jzn7e61x3a7v9h2r7t2m3q4p
      required:
        - object
        - id
        - workspace_id
        - name
        - url
        - enabled_events
        - delivery_scope
        - status
        - signing_secret_prefix
        - previous_signing_secret_expires_at
        - disabled_at
        - created_at
        - updated_at
      type: object
    LegacyErrorResponse:
      additionalProperties: false
      description: Current compatibility error envelope used by legacy /api/v1 routes.
      properties:
        error:
          description: Error message.
          type: string
        error_code:
          description: Optional machine-readable error code.
          type: string
          nullable: true
        missing_scopes:
          description: Missing scopes.
          items:
            description: Scope.
            type: string
          type: array
      required:
        - error
      type: object
    PublicApiErrorResponse:
      additionalProperties: false
      description: Target public API error envelope.
      properties:
        error:
          additionalProperties: false
          description: Error details.
          properties:
            code:
              description: Machine-readable error code.
              type: string
            message:
              description: Human-readable error message.
              type: string
            request_id:
              description: Request identifier.
              type: string
              nullable: true
          required:
            - code
            - message
          type: object
      required:
        - error
      type: object
    WebhookEndpointDeliveryScope:
      description: Webhook endpoint runtime data recipient.
      oneOf:
        - additionalProperties: false
          description: Member-targeted endpoint delivery scope.
          properties:
            actor_workspace_membership_id:
              description: Workspace membership the endpoint acts as.
              type: string
              example: 01jzn7e61x3a7v9h2r7t2m3q4p
            direct_message_delivery_enabled:
              description: >-
                Whether direct-message events are delivered for conversations
                the actor belongs to.
              type: boolean
            type:
              description: Delivery scope type.
              enum:
                - workspace_member
              type: string
          required:
            - type
            - actor_workspace_membership_id
            - direct_message_delivery_enabled
          type: object
        - additionalProperties: false
          description: Unsupported workspace export placeholder.
          properties:
            status:
              description: Workspace export approval state.
              enum:
                - unsupported
                - requires_approval
                - approved
              type: string
            type:
              description: Delivery scope type.
              enum:
                - workspace_export
              type: string
          required:
            - type
            - status
          type: object
  responses:
    BadRequest:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/LegacyErrorResponse'
      description: Bad request.
    Unauthorized:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/LegacyErrorResponse'
      description: Missing or invalid API key.
    Forbidden:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/LegacyErrorResponse'
      description: Forbidden.
    NotFound:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/LegacyErrorResponse'
      description: Not found.
    Conflict:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/LegacyErrorResponse'
      description: Conflict.
    RateLimited:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/PublicApiErrorResponse'
      description: Rate limit or quota exceeded.
    InternalError:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/LegacyErrorResponse'
      description: Internal server error.
  securitySchemes:
    AndoApiKey:
      description: Workspace API key. Current accepted keys use the ando_sk_ prefix.
      in: header
      name: x-api-key
      type: apiKey
    BearerApiKey:
      bearerFormat: ando_sk
      description: Compatibility transport for workspace API keys.
      scheme: bearer
      type: http

````