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

> ## Agent Instructions
> Money amounts are always major-unit decimal strings (e.g. "1000.00"), never floats and never minor units, in every request, response, and webhook payload.
> Authentication is OAuth 2.0 client credentials: exchange the Client ID and Client Secret at the Token URL for a 24-hour JWT and cache it; do not request a token per call.
> Set a unique clientRef on every money-moving request; it is the idempotency key, and retries return the original resource.
> Quotes are single-use, intent-locked, and expire fast: always read expiresAt, consume the quote with the executor matching its intent, and re-quote on expiry instead of retrying.
> Prefer webhooks over polling for payout, order, and deposit status tracking.
> Use the sandbox (api.sandbox.zuba.com) with its deterministic magic values before touching production.

# Get a single webhook delivery (includes payload)



## OpenAPI

````yaml /openapi.json get /v1/webhooks/{id}/deliveries/{deliveryId}
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/{id}/deliveries/{deliveryId}:
    get:
      tags:
        - Webhooks
      summary: Get a single webhook delivery (includes payload)
      operationId: WebhookController_getDelivery
      parameters:
        - description: Webhook endpoint ID
          in: path
          name: id
          required: true
          schema:
            format: uuid
            type: string
        - description: Webhook delivery ID
          in: path
          name: deliveryId
          required: true
          schema:
            format: uuid
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookDeliveryDetailResponseDto'
          description: Webhook delivery detail (includes payload)
        '401':
          description: Unauthorized
        '403':
          description: Insufficient role, or API key missing the create:webhooks scope
        '404':
          description: Endpoint or delivery not found
      security:
        - bearer: []
components:
  schemas:
    WebhookDeliveryDetailResponseDto:
      properties:
        attemptNumber:
          description: Attempt number
          type: number
        createdAt:
          description: Creation timestamp
          type: string
        eventId:
          description: Event ID
          example: evt_abc123
          type: string
        eventType:
          description: Event type
          example: payout.paid
          type: string
        httpStatusCode:
          description: HTTP status code from endpoint
          type: number
        id:
          description: Delivery ID
          type: string
        payload:
          additionalProperties: true
          description: Webhook request payload/body sent to the endpoint
          type: object
        responseBody:
          description: Response body from endpoint (truncated to 1KB)
          type: string
        status:
          description: Delivery status
          enum:
            - pending
            - delivered
            - failed
          type: string
      required:
        - id
        - eventId
        - eventType
        - attemptNumber
        - status
        - createdAt
        - payload
      type: object
  securitySchemes:
    bearer:
      bearerFormat: JWT
      description: Enter Auth0 JWT token
      scheme: bearer
      type: http

````