> ## 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 deliverables (Customer Portal)

> Retrieves the complete fulfillment payload for an order, authenticated via the Customer Portal JWT. This allows buyers to securely access their downloads, license keys, and Discord roles directly from the frontend without routing through your custom backend.

**Usage:** You are rendering a 'My Purchases' page in React and want to fetch the buyer's files directly from the browser using their session token.



## OpenAPI

````yaml get /portal/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:
  /portal/orders/{id}/deliverables:
    get:
      tags:
        - Customer Portal
        - Fulfillment
      summary: List deliverables (Customer Portal)
      description: >-
        Retrieves the complete fulfillment payload for an order, authenticated
        via the Customer Portal JWT. This allows buyers to securely access their
        downloads, license keys, and Discord roles directly from the frontend
        without routing through your custom backend.


        **Usage:** You are rendering a 'My Purchases' page in React and want to
        fetch the buyer's files directly from the browser using their session
        token.
      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

````