Skip to main content
POST
/
api
/
v1
/
orders
Create Order
curl --request POST \
  --url https://{subdomain}.unicyfalcon.com/api/v1/orders

Request Body

{
  "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.