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

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

# Retrieve specific order info

`GET` `/api/store/order/{id}/`

## Path parameters

- `id` (string, required)

## Responses

- `200` - Specific order information

## 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/{id}/:
    get:
      parameters:
        - in: path
          name: id
          required: true
          schema:
            example: 00000000-0000-0000-0000000000000000
            type: string
      responses:
        "200":
          content:
            application/json:
              schema:
                properties:
                  dateCreated:
                    example: 2015-06-01T08:36:18Z
                    type: string
                  id:
                    example: 00000000-0000-0000-0000000000000000
                    type: string
                  orderReference:
                    example: NL0456
                    type: string
                  status:
                    example: IN_PRODUCTION
                    type: string
                type: object
          description: Specific order information
      security:
        - permanentToken:
            - brandstore.orderadmin.view
        - OAuth2:
            - brandstore.orderadmin.view
      summary: Retrieve specific order info
      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
```
