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

Request Body (all optional)

{
  "driver_id": 456,
  "status": "in_transit",
  "pickup_at": "ISO8601",
  "dropoff_at": "ISO8601",
  "notes": "string",
  "latitude": 45.5017,
  "longitude": -73.5673
}

Response

200 OK with updated delivery object.