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

Request Body (all optional)

{
  "status": "confirmed",
  "pickup_notes": "string",
  "dropoff_notes": "string",
  "pickup_address_id": "uuid",
  "dropoff_address_id": "uuid"
}

Response

200 OK with updated order object.