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

Request Body

{
  "order_id": 123,
  "driver_id": 456,
  "pickup_address_id": 789,
  "dropoff_address_id": 101,
  "status": "scheduled",
  "tracking_number": "TRACK-2025-001",
  "pickup_at": "2025-10-28T10:00:00Z",
  "dropoff_at": "2025-10-28T14:00:00Z",
  "notes": "string",
  "delivery_cost": 25.00
}

Response

201 Created with the created delivery object.