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

> Retrieves a list of orders made by a specific customer. Includes information such as order status, amount, and product details.

**Usage:** Use this endpoint to manage customer relationships and analyze buying patterns.



## OpenAPI

````yaml get /customers/{id}/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:
  /customers/{id}/orders:
    get:
      tags:
        - Customers
      summary: List customer orders
      description: >-
        Retrieves a list of orders made by a specific customer. Includes
        information such as order status, amount, and product details.


        **Usage:** Use this endpoint to manage customer relationships and
        analyze buying patterns.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
        - name: limit
          in: query
          schema:
            type: integer
            default: 10
        - name: page
          in: query
          schema:
            type: integer
            default: 1
      responses:
        '200':
          description: Customer orders retrieved
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CustomerOrdersResponse'
        '401':
          description: Unauthorized
        '404':
          description: Not Found
components:
  schemas:
    CustomerOrdersResponse:
      type: object
      properties:
        meta:
          type: object
          properties:
            total:
              type: integer
            page:
              type: integer
            limit:
              type: integer
            has_more:
              type: boolean
        data:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              status:
                type: string
              amount:
                type: number
              net_amount:
                type: number
              tax_amount:
                type: number
              product_id:
                type: string
              variant_id:
                type: string
              customer_country:
                type: string
              created_at:
                type: string
                format: date-time
              product:
                type: object
                properties:
                  id:
                    type: string
                  name:
                    type: string
              bump_id:
                type: string
              bump:
                type: object
                properties:
                  id:
                    type: string
                  title:
                    type: string
                  price:
                    type: number
                  badge_title:
                    type: string
                  deliverables:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        type:
                          type: string
                        title:
                          type: string
                        metadata:
                          type: object

````