---
title: "Retrieve orders"
url: "https://earlyaccess.developers.bynder.com/apis/brandstore-api-1/versions/9733d306-d818-499d-9b63-61b3136d2eea/paths/api-store-order/get"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/brandstore-api-1/versions/9733d306-d818-499d-9b63-61b3136d2eea.md

# Retrieve orders

`GET` `/api/store/order/`

## Query parameters

- `page` (integer, optional)

## Responses

- `200` - A list of orders

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Brandstore API
  version: 1.0.0
servers:
  - url: https://{your-bynder-domain}
paths:
  /api/store/order/:
    get:
      parameters:
        - in: query
          name: page
          required: false
          schema:
            example: 1
            type: integer
      responses:
        "200":
          content:
            application/json:
              schema:
                items:
                  properties:
                    account_name:
                      example: Bynder
                      type: string
                    currency_symbol:
                      example: "8364"
                      type: string
                    date_created:
                      example: 2018-10-25T14:26:01+00:00
                      type: string
                    id:
                      example: 00000000-0000-0000-0000-000000000000
                      type: string
                    net_price:
                      example: 0
                      type: number
                    order_ref:
                      example: NA13334
                      type: string
                    order_status:
                      example: In production
                      type: string
                    username:
                      example: john.doe@bynder.com
                      type: string
                  type: object
                type: array
          description: A list of orders
      security:
        - permanentToken:
            - brandstore.orderadmin.view
        - OAuth2:
            - brandstore.orderadmin.view
      summary: Retrieve orders
      tags:
        - Orders
security:
  - permanentToken:
      - brandstore.orderadmin.view
  - OAuth2:
      - brandstore.orderadmin.view
components:
  securitySchemes:
    permanentToken:
      in: header
      name: Authorization
      type: apiKey
    OAuth2:
      flows:
        authorizationCode:
          authorizationUrl: https://{your-auth-url}
          scopes:
            brandstore.orderadmin.edit: ""
            brandstore.orderadmin.view: ""
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
        clientCredentials:
          scopes:
            brandstore.orderadmin.edit: ""
            brandstore.orderadmin.view: ""
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
      type: oauth2
```
