Skip to main content
Create Delivery
curl --request POST \
  --url https://dev.api.fleets.usedora.com/api/v1/deliveries/create
{
"status": "success",
"data": {
"uuid": "9fd136b9-dd33-4006-859b-5e57906f02b4",
"order_number": "41127",
"fleet_identity_number": "63471915",
"status": "Pending",
"status_label": "Pending",
"sender_longitude": null,
"sender_latitude": null,
"customer_longitude": null,
"customer_latitude": null,
"delivery_fee": 5000,
"total_delivery_amount": 5250,
"service_charge": 125,
"rider_commission": null,
"currency": "NGN",
"note": null,
"creation_mode": null,
"created_at": "2025-04-15T18:25:54.000000Z",
"pickup_at": null,
"dropoff_at": null,
"customer_detail": [],
"sender_detail": {
  "uuid": "8e09f8fe-147a-4178-b3be-6b7eec4bf849",
  "sender_name": "Emmanuel Chinatuka",
  "sender_phone": "08087168391",
  "sender_email": "chimaobinice@gmail.com",
  "sender_phonecode": "234",
  "sender_address": "2 Umuleri street, Lagos",
  "business_owned": false,
  "created_at": "2025-04-15T18:25:54.000000Z",
  "updated_at": "2025-04-15T18:25:54.000000Z"
},
"rider_info": null,
"delivery_info_from_rider": null,
"is_paid": true,
"pickup_photo": null,
"dropoff_photo": null,
"cancellation_reason": null,
"cancelled_by": {
  "name": null,
  "photo": null
}
},
"message": "Delivery created successfully"
}

📝 Summary

This endpoint allows users to create a new delivery request in the system. It accepts details such as sender and recipient information, delivery address, package details, and delivery preferences. Upon successful creation, it returns a unique delivery ID and the status of the delivery request.

Requests

Body Parameters

Params

Responses

HTTP Status CodeMeaningDescriptionData schema
200OKnoneInline

Data Schema

{
"status": "success",
"data": {
"uuid": "9fd136b9-dd33-4006-859b-5e57906f02b4",
"order_number": "41127",
"fleet_identity_number": "63471915",
"status": "Pending",
"status_label": "Pending",
"sender_longitude": null,
"sender_latitude": null,
"customer_longitude": null,
"customer_latitude": null,
"delivery_fee": 5000,
"total_delivery_amount": 5250,
"service_charge": 125,
"rider_commission": null,
"currency": "NGN",
"note": null,
"creation_mode": null,
"created_at": "2025-04-15T18:25:54.000000Z",
"pickup_at": null,
"dropoff_at": null,
"customer_detail": [],
"sender_detail": {
  "uuid": "8e09f8fe-147a-4178-b3be-6b7eec4bf849",
  "sender_name": "Emmanuel Chinatuka",
  "sender_phone": "08087168391",
  "sender_email": "chimaobinice@gmail.com",
  "sender_phonecode": "234",
  "sender_address": "2 Umuleri street, Lagos",
  "business_owned": false,
  "created_at": "2025-04-15T18:25:54.000000Z",
  "updated_at": "2025-04-15T18:25:54.000000Z"
},
"rider_info": null,
"delivery_info_from_rider": null,
"is_paid": true,
"pickup_photo": null,
"dropoff_photo": null,
"cancellation_reason": null,
"cancelled_by": {
  "name": null,
  "photo": null
}
},
"message": "Delivery created successfully"
}