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

# List all deliverables for an order

> Retrieves the complete fulfillment payload for a specific order. This is the ultimate fulfillment endpoint for custom storefronts. It automatically generates 1-hour secure pre-signed URLs for any file downloads, fetches any License Keys auto-generated during checkout, and returns dynamic claim URLs for Discord integrations.

**Usage:** A company building a custom 'My Library' or 'All Access' dashboard where buyers log in to access their purchased goods securely.



## OpenAPI

````yaml get /orders/{id}/deliverables
openapi: 3.0.0
info:
  title: Blink API
  description: Comprehensive API documentation for Blink.
  version: 1.0.0
servers:
  - url: https://api.blink.store/v1
security: []
paths:
  /orders/{id}/deliverables:
    get:
      tags:
        - Orders
        - Fulfillment
      summary: List all deliverables for an order
      description: >-
        Retrieves the complete fulfillment payload for a specific order. This is
        the ultimate fulfillment endpoint for custom storefronts. It
        automatically generates 1-hour secure pre-signed URLs for any file
        downloads, fetches any License Keys auto-generated during checkout, and
        returns dynamic claim URLs for Discord integrations.


        **Usage:** A company building a custom 'My Library' or 'All Access'
        dashboard where buyers log in to access their purchased goods securely.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: The ID of the order
      responses:
        '200':
          description: List of deliverables unlocked by this order

````