# Get order

**GET** `/orders/{order_id}`

## Parameters

### `order_id` (_path_, required)

Order id

- **Type:** `string`
- **Example:** `"42"`
- **Constraints:** pattern `^[1-9]\d*$`

## Responses

### 200

Order

**application/json**

_Schema ref:_ `#/components/schemas/GetOrderResponse` (GetOrderResponse)

```json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "order_id": {
          "type": "integer"
        },
        "client_status": {
          "type": "string",
          "enum": [
            "RECEIVED",
            "BEING_PROCESSED",
            "FINANCING_REQUEST",
            "DOC_REQUIRED",
            "SIGNING",
            "PROCESSING",
            "SHIPPED",
            "RECEPTION_TO_CONFIRM",
            "ONGOING_ORDER",
            "PENDING_DECISION",
            "EQUIPMENT_TO_SEND",
            "ARCHIVED",
            "FAILED",
            "UNKNOWN"
          ],
          "description": "Order progress key for display and filtering",
          "example": "BEING_PROCESSED"
        },
        "device_names": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Display names for devices on the order"
        },
        "rent": {
          "type": "string",
          "nullable": true
        },
        "rent_currency": {
          "type": "string",
          "nullable": true
        },
        "order_number": {
          "type": "string",
          "nullable": true
        },
        "contract_number": {
          "type": "string",
          "nullable": true
        },
        "order_date": {
          "type": "string",
          "nullable": true
        },
        "num_devices": {
          "type": "integer",
          "nullable": true
        }
      },
      "required": [
        "order_id",
        "client_status",
        "device_names",
        "rent",
        "rent_currency",
        "order_number",
        "contract_number",
        "order_date",
        "num_devices"
      ]
    }
  },
  "required": [
    "data"
  ]
}
```

### 404

Not found

**application/json**

_Schema ref:_ `#/components/schemas/OrderNotFoundErrorResponse` (OrderNotFoundErrorResponse)

```json
{
  "type": "object",
  "properties": {
    "error": {
      "type": "string",
      "enum": [
        "ORDER_NOT_FOUND"
      ]
    }
  },
  "required": [
    "error"
  ]
}
```

## Security

```json
[
  {
    "bearerAuth": []
  }
]
```

**bearerAuth:** Bearer token using a Fleet platform API key (flt_sk_…).

---

_Generated from the OpenAPI specification for raw Markdown / tooling use._
