> ## 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 Customer Orders

> Fetches orders securely for a specific customer authenticated via portal magic link.

**Usage:** Headless apps building completely custom 'My Account' or 'Order History' pages for their buyers.



## OpenAPI

````yaml get /portal/orders
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:
    get:
      tags:
        - Customer Portal
      summary: List Customer Orders
      description: >-
        Fetches orders securely for a specific customer authenticated via portal
        magic link.


        **Usage:** Headless apps building completely custom 'My Account' or
        'Order History' pages for their buyers.
      responses:
        '200':
          description: Successful response
        '400':
          description: Bad Request
        '401':
          description: Unauthorized

````