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

# Get Delivery



## OpenAPI

````yaml GET /v1/webhooks/deliveries/{delivery_id}
openapi: 3.0.3
info:
  title: Dome Platform API
  description: Connect and REST APIs for the Dome agent governance platform.
  version: 2.0.0
servers:
  - url: https://api.domesystems.ai
    description: Production
security: []
tags:
  - name: Agents
  - name: Authorization
  - name: Guards
  - name: Tools
  - name: Tool Catalog
  - name: Models
  - name: Model Pools
  - name: Quotas
  - name: Gateways
  - name: Webhooks
  - name: Audit
  - name: Workspaces
  - name: Access Control
  - name: Tenants
  - name: Platform Keys
  - name: Enrollment
  - name: Platform
  - name: Identity
paths:
  /v1/webhooks/deliveries/{delivery_id}:
    get:
      tags:
        - Webhooks
      operationId: EventingService_GetDelivery
      parameters:
        - name: delivery_id
          in: path
          required: true
          schema:
            type: string
        - name: workspace_id
          in: query
          schema:
            type: string
        - name: include_body
          in: query
          description: >-
            include_body requests the retained canonical webhook body, when
            still
             retained in DynamoDB.
          schema:
            type: boolean
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetDeliveryResponse'
components:
  schemas:
    GetDeliveryResponse:
      type: object
      properties:
        delivery:
          $ref: '#/components/schemas/Delivery'
        attempts:
          type: array
          items:
            $ref: '#/components/schemas/DeliveryAttempt'
        body_retained:
          type: boolean
          description: >-
            body_retained reports whether the canonical body is still available
            for
             preview/replay.
        body:
          type: string
          description: >-
            body is the retained canonical webhook JSON, present only when
            include_body
             was set and body_retained is true.
    Delivery:
      type: object
      properties:
        delivery_id:
          type: string
        event_id:
          type: string
        event_type:
          type: string
        event_version:
          type: integer
          format: uint32
        subscription_id:
          type: string
        destination_id:
          type: string
        delivery_kind:
          type: string
        status:
          type: string
        attempt_count:
          type: integer
          format: int32
        occurred_at:
          type: string
          format: date-time
        last_attempt_at:
          type: string
          format: date-time
        next_attempt_at:
          type: string
          format: date-time
        retry_deadline_at:
          type: string
          format: date-time
        delivered_at:
          type: string
          format: date-time
        last_http_status:
          type: integer
          format: int32
        last_error_code:
          type: string
        last_error_summary:
          type: string
        replay_of_delivery_id:
          type: string
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
      description: >-
        Delivery is the customer-facing read model for one fanout of one event
        to one
         subscription/destination. It is read from Postgres event_delivery_records; the
         retained body lives in DynamoDB and its availability is reported by
         GetDelivery.body_retained.
    DeliveryAttempt:
      type: object
      properties:
        attempt_number:
          type: integer
          format: int32
        attempted_at:
          type: string
          format: date-time
        status:
          type: string
        http_status:
          type: integer
          format: int32
        duration_ms:
          type: integer
          format: int32
        error_code:
          type: string
        error_summary:
          type: string
        response_snippet:
          type: string
        worker_id:
          type: string
      description: >-
        DeliveryAttempt is one send attempt for a delivery. Response snippets
        are
         capped and redacted; response headers are never captured.

````