> ## Documentation Index
> Fetch the complete documentation index at: https://docs.unicyfalcon.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Create Order

> Create a new order

## Request Body

```json theme={null}
{
  "customer_id": "uuid",
  "order_number": "ORD-2025-001",
  "order_items": [{ "product_id": "uuid", "quantity": 2, "unit_price": 99.99 }],
  "status": "pending",
  "pickup_address_id": "uuid",
  "dropoff_address_id": "uuid",
  "pickup_notes": "string",
  "dropoff_notes": "string"
}
```

## Response

**201 Created** with the created order object.
