---
title: "fulfilment.Order"
url: "https://developer.retailexpress.com.au/apis/retail-express-api-21-v2/versions/210b509a-613e-44ac-a87b-ef6c22c23a2c/schemas/fulfilment.Order"
---

> Full API specification: https://developer.retailexpress.com.au/apis/retail-express-api-21-v2/versions/210b509a-613e-44ac-a87b-ef6c22c23a2c.md

# fulfilment.Order

Order model.

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Retail Express API
  version: v2.1
servers:
  - url: https://api.retailexpress.com.au/v2.1
components:
  schemas:
    fulfilment.Order:
      title: ""
      required:
        - fulfilment_service_id
      type: object
      properties:
        fulfilment_service_id:
          type: string
          description: Fulfilment service id.
          format: uuid
        order_item_id:
          type: integer
          description: Order item id.
          format: int32
        order_id:
          type: integer
          description: Order id.
          format: int32
        status:
          type: string
          description: Order Status.
          nullable: true
        error:
          type: string
          description: Error Message.
          nullable: true
        fulfilment_service_name:
          type: string
          description: Fulfilment service name.
          nullable: true
        fulfilment_id:
          type: integer
          description: Fulfilment id
          format: int32
        fulfilment_qty:
          type: integer
          description: Fulfilment quantity
          format: int32
        fulfilment_date:
          type: string
          description: Fulfilment date
          format: date-time
      additionalProperties: false
      description: Order model.
```
