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

# List recent delivery attempts for a subscription

> Returns the most recent delivery attempts for the subscription (newest first), including the response status code and retry schedule. Use `limit` to cap the page size (default 50, max 200).



## OpenAPI

````yaml https://api.caratuva.com/docs-json get /v1/webhooks/{id}/deliveries
openapi: 3.0.0
info:
  title: Caratuva API
  description: >-
    Cross-border B2B payments. Fiat on-ramp → USDC → PIX off-ramp.


    Every request runs in **test** or **live** mode on this single host — there
    is no separate sandbox URL. API keys carry the mode in their prefix
    (`pk_test_…` / `pk_live_…`); dashboard JWTs start in test and re-mint via
    `POST /v1/auth/switch-mode`. Test mode runs the full pipeline against a
    sandbox payment instance (KYB/KYC auto-approve, no real money); live runs on
    real rails and requires approved KYB. Test and live data are fully isolated.
    Check readiness with `GET /v1/onboarding/status`.
  version: 1.0.0
  contact: {}
servers: []
security: []
tags:
  - name: Invoices
    description: Create and manage invoices that collect for one of your sellers.
  - name: Payments
    description: Create a payment (keep your own checkout), fetch it, or cancel it.
  - name: Accounts
    description: >-
      Onboard and manage your sellers, buyers, and your own (self) account at
      the settlement partner.
  - name: Webhooks
    description: Subscribe to outbound event notifications and manage signing secrets.
  - name: API keys
    description: Issue, list, and revoke the API keys that authenticate your integration.
  - name: Access
    description: Request and check production (live-mode) access for your organization.
  - name: Reports
    description: Pull settlement and transfer-pricing reports.
paths:
  /v1/webhooks/{id}/deliveries:
    get:
      tags:
        - Webhooks
      summary: List recent delivery attempts for a subscription
      description: >-
        Returns the most recent delivery attempts for the subscription (newest
        first), including the response status code and retry schedule. Use
        `limit` to cap the page size (default 50, max 200).
      operationId: WebhooksOutboundController_listDeliveries
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
        - name: limit
          required: false
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 200
      responses:
        '200':
          description: Recent delivery attempts (newest first)
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                    subscriptionId:
                      type: string
                    eventType:
                      type: string
                    attempt:
                      type: integer
                      minimum: 1
                    status:
                      type: string
                      enum:
                        - pending
                        - delivered
                        - failed
                        - dead_letter
                    responseStatus:
                      type: integer
                      nullable: true
                    nextAttemptAt:
                      type: string
                      nullable: true
                    deliveredAt:
                      type: string
                      nullable: true
                    createdAt:
                      type: string
                  required:
                    - id
                    - subscriptionId
                    - eventType
                    - attempt
                    - status
                    - responseStatus
                    - nextAttemptAt
                    - deliveredAt
                    - createdAt
                  additionalProperties: false
              examples:
                default:
                  value:
                    - id: ckwd001
                      subscriptionId: ckwh001
                      eventType: payment_intent.settled
                      attempt: 1
                      status: delivered
                      responseStatus: 200
                      nextAttemptAt: null
                      deliveredAt: '2026-06-30T12:05:01.000Z'
                      createdAt: '2026-06-30T12:05:00.000Z'
        '404':
          description: NotFound — No webhook subscription with that id for your org.
          content:
            application/json:
              schema:
                type: object
                properties:
                  statusCode:
                    type: integer
                    example: 404
                  error:
                    type: string
                    example: NotFound
                  message:
                    type: string
                    example: No webhook subscription with that id for your org.
      security:
        - apiKey: []
        - bearer: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-API-Key
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````