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

# List deliveries for a webhook subscription

> Returns the paginated delivery-attempt log for a single webhook subscription, ordered most-recent first. Each row records the event type, attempt count, lifecycle status, response code, and timestamps. Optionally filter by delivery status. Requires a Nevermined API key. Requires organization admin privileges. Requires the organization to be on the Premium tier or higher.



## OpenAPI

````yaml /api-reference/organizations-openapi.json get /organizations/{orgId}/webhooks/{subscriptionId}/deliveries
openapi: 3.0.0
info:
  title: Nevermined Organizations API
  description: >-
    Manage a Nevermined organization programmatically — members, tiers, groups &
    budgets, treasury wallets, customers, webhooks, analytics, and
    agent-discovery surfaces.
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.sandbox.nevermined.app/api/v1
    description: Sandbox
  - url: https://api.live.nevermined.app/api/v1
    description: Live
security: []
tags:
  - name: Organizations
    x-group: General
    description: Organization settings, members & roles, and workspace context.
  - name: Organizations - Billing
    x-group: Billing
    description: Tiers, subscriptions, invoices, checkout, and the public tier catalog.
  - name: Groups
    x-group: Groups & Budgets
    description: Organization groups, per-group budgets, and shared payment methods.
  - name: Organizations - Wallets
    x-group: Wallets
    description: Custodial stablecoin treasury wallets.
  - name: Organizations - Customers
    x-group: Customers
    description: The white-label customer CRM (Enterprise).
  - name: Organizations - Analytics
    x-group: Analytics
    description: Revenue, MRR, usage, conversion, and per-member metrics.
  - name: Organizations - Webhooks
    x-group: Webhooks
    description: Outbound webhook subscriptions and deliveries.
  - name: Organizations - Activity
    x-group: Activity
    description: The organization activity feed.
  - name: Organizations - Realtime
    x-group: Realtime
    description: Realtime WebSocket secret management (Enterprise).
  - name: Invitations
    x-group: Invitations
    description: Invite people to an organization.
  - name: Organizations - Integration
    x-group: Agent Discovery
    description: >-
      Public agent-discovery surfaces (llms.txt, agentic-instructions.md,
      ai-catalog.json).
paths:
  /organizations/{orgId}/webhooks/{subscriptionId}/deliveries:
    get:
      tags:
        - Organizations - Webhooks
      summary: List deliveries for a webhook subscription
      description: >-
        Returns the paginated delivery-attempt log for a single webhook
        subscription, ordered most-recent first. Each row records the event
        type, attempt count, lifecycle status, response code, and timestamps.
        Optionally filter by delivery status. Requires a Nevermined API key.
        Requires organization admin privileges. Requires the organization to be
        on the Premium tier or higher.
      operationId: WebhookSubscriptionsController_listDeliveries
      parameters:
        - name: orgId
          required: true
          in: path
          description: Organization ID
          schema:
            type: string
            example: org-abc123
        - name: subscriptionId
          required: true
          in: path
          description: ID of the webhook subscription whose delivery log is being listed
          schema:
            example: whs-9c2f1a7e
            type: string
        - name: page
          required: false
          in: query
          description: 1-based page number. Defaults to 1.
          schema:
            example: 1
            type: number
        - name: limit
          required: false
          in: query
          description: Items per page (1–200). Defaults to 50.
          schema:
            example: 50
            type: number
        - name: status
          required: false
          in: query
          description: Filter the log to deliveries in a single lifecycle status.
          schema:
            $ref: '#/components/schemas/WebhookDeliveryStatus'
      responses:
        '200':
          description: Paginated delivery list with `items`, `total`, `page`, and `limit`
        '401':
          description: Missing or invalid Nevermined API key
        '403':
          description: >-
            Caller is not an organization admin, or the org is not on the
            Premium tier or higher
      security:
        - Authorization: []
components:
  schemas:
    WebhookDeliveryStatus:
      type: string
      enum:
        - pending
        - in_flight
        - delivered
        - failed
        - dead
  securitySchemes:
    Authorization:
      scheme: bearer
      bearerFormat: JWT
      type: http

````

## Related topics

- [List webhook subscriptions](/docs/api-reference/organizations--webhooks/list-webhook-subscriptions.md)
- [Retry a webhook delivery](/docs/api-reference/organizations--webhooks/retry-a-webhook-delivery.md)
- [Get a webhook delivery record](/docs/api-reference/organizations--webhooks/get-a-webhook-delivery-record.md)
- [Delete a webhook subscription](/docs/api-reference/organizations--webhooks/delete-a-webhook-subscription.md)
- [Update a webhook subscription](/docs/api-reference/organizations--webhooks/update-a-webhook-subscription.md)
