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

> Lists webhook deliveries with optional endpoint, event, status, and creation-time filters.



## OpenAPI

````yaml /api-reference/openapi.json get /webhook-deliveries
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-deliveries:
    get:
      tags:
        - Webhooks
      summary: List webhook deliveries
      description: >-
        Lists webhook deliveries with optional endpoint, event, status, and
        creation-time filters.
      operationId: listWebhookDeliveries
      parameters:
        - description: Filter by webhook endpoint identifier.
          in: query
          name: endpoint_id
          schema:
            description: Filter by webhook endpoint identifier.
            type: string
        - description: Filter by webhook event identifier.
          in: query
          name: event_id
          schema:
            description: Filter by webhook event identifier.
            type: string
        - description: Filter by delivery status.
          in: query
          name: status
          schema:
            description: Filter by delivery status.
            type: string
        - description: Return deliveries created after this timestamp.
          in: query
          name: created_after
          schema:
            description: Return deliveries created after this timestamp.
            type: string
        - description: Return deliveries created before this timestamp.
          in: query
          name: created_before
          schema:
            description: Return deliveries created before this timestamp.
            type: string
        - description: >-
            Opaque cursor returned by data.page_info.next_cursor. Reuse it with
            identical filters.
          in: query
          name: cursor
          schema:
            description: >-
              Opaque cursor returned by data.page_info.next_cursor. Reuse it
              with identical filters.
            type: string
        - description: Maximum number of deliveries to return.
          in: query
          name: limit
          schema:
            description: Maximum number of deliveries to return.
            type: integer
            maximum: 10
            minimum: 1
      responses:
        '200':
          content:
            application/json:
              examples:
                deliveries:
                  summary: Webhook deliveries.
                  value:
                    data:
                      items:
                        - object: webhook_delivery
                          id: whd_01jzn7e61x3a7v9h2r7t2m3q4p
                          workspace_id: workspace_01jzn7e61x3a7v9h2r7t2m3q4p
                          endpoint_id: wep_01jzn7e61x3a7v9h2r7t2m3q4p
                          endpoint_url: https://example.com/ando/webhooks
                          endpoint_status: active
                          endpoint_enabled_events:
                            - webhook.test
                            - message.created
                            - message.updated
                            - conversation.membership.created
                            - conversation.archived
                            - conversation.unarchived
                            - call.started
                            - call.ended
                            - call.updated
                            - call.transcript.updated
                          endpoint_signing_secret_prefix: example
                          event_id: whe_01jzn7e61x3a7v9h2r7t2m3q4p
                          event_type: webhook.test
                          api_version: '2026-07-13'
                          status: scheduled
                          attempt_count: 0
                          max_attempts: 8
                          next_attempt_at: '2026-05-27T08:00:00.000Z'
                          first_attempted_at: null
                          last_attempted_at: null
                          succeeded_at: null
                          failed_at: null
                          last_http_status: null
                          last_error_code: null
                          last_error_message: null
                          replayable: false
                          created_at: '2026-05-27T08:00:00.000Z'
                          updated_at: '2026-05-27T08:00:00.000Z'
                      page_info:
                        has_next_page: true
                        next_cursor: opaque-webhook-delivery-cursor
                    items:
                      - object: webhook_delivery
                        id: whd_01jzn7e61x3a7v9h2r7t2m3q4p
                        workspace_id: workspace_01jzn7e61x3a7v9h2r7t2m3q4p
                        endpoint_id: wep_01jzn7e61x3a7v9h2r7t2m3q4p
                        endpoint_url: https://example.com/ando/webhooks
                        endpoint_status: active
                        endpoint_enabled_events:
                          - webhook.test
                          - message.created
                          - message.updated
                          - conversation.membership.created
                          - conversation.archived
                          - conversation.unarchived
                          - call.started
                          - call.ended
                          - call.updated
                          - call.transcript.updated
                        endpoint_signing_secret_prefix: example
                        event_id: whe_01jzn7e61x3a7v9h2r7t2m3q4p
                        event_type: webhook.test
                        api_version: '2026-07-13'
                        status: scheduled
                        attempt_count: 0
                        max_attempts: 8
                        next_attempt_at: '2026-05-27T08:00:00.000Z'
                        first_attempted_at: null
                        last_attempted_at: null
                        succeeded_at: null
                        failed_at: null
                        last_http_status: null
                        last_error_code: null
                        last_error_message: null
                        replayable: false
                        created_at: '2026-05-27T08:00:00.000Z'
                        updated_at: '2026-05-27T08:00:00.000Z'
              schema:
                $ref: '#/components/schemas/WebhookDeliveryListResponse'
          description: Webhook deliveries.
        '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:
    WebhookDeliveryListResponse:
      additionalProperties: false
      description: Webhook delivery list response.
      properties:
        data:
          additionalProperties: false
          description: Standard paginated public response data.
          properties:
            items:
              description: Webhook deliveries.
              items:
                $ref: '#/components/schemas/WebhookDelivery'
              type: array
            page_info:
              $ref: '#/components/schemas/PublicApiPageInfo'
          required:
            - items
            - page_info
          type: object
        items:
          description: >-
            Compatibility alias for data.items. New clients should read
            data.items.
          items:
            $ref: '#/components/schemas/WebhookDelivery'
          type: array
          deprecated: true
      required:
        - data
        - items
      type: object
    WebhookDelivery:
      additionalProperties: false
      description: Webhook delivery state visible through the public API.
      properties:
        api_version:
          description: Webhook event API version.
          type: string
        attempt_count:
          description: Number of attempted deliveries.
          type: integer
        created_at:
          description: Delivery creation timestamp.
          type: string
          example: '2026-05-14T08:00:00.000Z'
          format: date-time
        endpoint_enabled_events:
          description: Events currently enabled on the 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
        endpoint_id:
          description: Webhook endpoint identifier.
          type: string
          example: 01jzn7e61x3a7v9h2r7t2m3q4p
        endpoint_signing_secret_prefix:
          description: Display-safe prefix of the endpoint signing secret.
          type: string
          nullable: true
        endpoint_status:
          description: Current endpoint status.
          enum:
            - active
            - disabled
          type: string
          nullable: true
        endpoint_url:
          description: Current endpoint receiver URL.
          type: string
          nullable: true
        event_id:
          description: Webhook event identifier.
          type: string
          example: 01jzn7e61x3a7v9h2r7t2m3q4p
        event_type:
          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
        failed_at:
          description: Terminal failure timestamp.
          type: string
          format: date-time
          nullable: true
        first_attempted_at:
          description: First attempt timestamp.
          type: string
          format: date-time
          nullable: true
        id:
          description: Webhook delivery identifier.
          type: string
          example: 01jzn7e61x3a7v9h2r7t2m3q4p
        last_attempted_at:
          description: Last attempt timestamp.
          type: string
          format: date-time
          nullable: true
        last_error_code:
          description: Last delivery error code.
          type: string
          nullable: true
        last_error_message:
          description: Last delivery error message.
          type: string
          nullable: true
        last_http_status:
          description: Last receiver HTTP status.
          type: number
          nullable: true
        max_attempts:
          description: Maximum automatic delivery attempts.
          type: integer
        next_attempt_at:
          description: Next scheduled attempt timestamp.
          type: string
          format: date-time
          nullable: true
        object:
          description: Object type.
          enum:
            - webhook_delivery
          type: string
        replayable:
          description: Whether the delivery can be replayed from the public API.
          type: boolean
        status:
          description: Delivery status.
          enum:
            - pending
            - scheduled
            - in_flight
            - succeeded
            - retrying
            - failed
            - skipped
          type: string
        succeeded_at:
          description: Success timestamp.
          type: string
          format: date-time
          nullable: true
        updated_at:
          description: Last update timestamp.
          type: string
          example: '2026-05-14T08:00:00.000Z'
          format: date-time
        workspace_id:
          description: Workspace identifier.
          type: string
          example: 01jzn7e61x3a7v9h2r7t2m3q4p
      required:
        - object
        - id
        - workspace_id
        - endpoint_id
        - endpoint_url
        - endpoint_status
        - endpoint_enabled_events
        - endpoint_signing_secret_prefix
        - event_id
        - event_type
        - api_version
        - status
        - attempt_count
        - max_attempts
        - next_attempt_at
        - first_attempted_at
        - last_attempted_at
        - succeeded_at
        - failed_at
        - last_http_status
        - last_error_code
        - last_error_message
        - replayable
        - created_at
        - updated_at
      type: object
    PublicApiPageInfo:
      additionalProperties: false
      description: Target public API pagination metadata with snake_case field names.
      properties:
        end_cursor:
          description: Cursor for the last item.
          type: string
          nullable: true
        has_next_page:
          description: Whether another page exists after this page.
          type: boolean
        has_previous_page:
          description: Whether another page exists before this page.
          type: boolean
        next_cursor:
          description: Cursor for the next page.
          type: string
          nullable: true
        previous_cursor:
          description: Cursor for the previous page.
          type: string
          nullable: true
        start_cursor:
          description: Cursor for the first item.
          type: string
          nullable: true
      required:
        - has_next_page
      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
  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

````