📝 Summary
This endpoint allows users to retrieve the details of a specific delivery by providing the unique delivery ID. It returns all relevant information related to the delivery, including the delivery status, sender and recipient details, assigned driver, and vehicle information.Requests
Body
Show child attributes
Show child attributes
Description:
| Field | Type | Required | Description |
|---|---|---|---|
delivery_uuid | string | ✅ Yes |
Responses
| HTTP Status Code | Meaning | Description | Data schema |
|---|---|---|---|
| 200 | OK | none | Inline |
Responses Data Schema
Show child attributes
Show child attributes
Description:
| Name | Type | Required | Restrictions | Title | description |
|---|---|---|---|---|---|
| » status | string | true | none | none | |
| » data | object | true | none | none | |
| »» uuid | string | true | none | none | |
| »» order_number | string | true | none | none | |
| »» fleet_id | null | true | none | none | |
| »» status | string | true | none | none | |
| »» delivery_type | string | true | none | none | |
| »» sender_longitude | string | true | none | none | |
| »» sender_latitude | string | true | none | none | |
| »» customer_longitude | string | true | none | none | |
| »» customer_latitude | string | true | none | none | |
| »» delivery_fee | string | true | none | none | |
| »» created_at | string | true | none | none | |
| »» customer_detail | object | true | none | none | |
| »»» uuid | string | true | none | none | |
| »»» customer_name | string | true | none | none | |
| »»» customer_email | null | true | none | none | |
| »»» customer_phone_number | string | true | none | none | |
| »»» customer_phone_code | string | true | none | none | |
| »»» customer_address | string | true | none | none | |
| »»» created_at | string | true | none | none | |
| »» sender_detail | object | true | none | none | |
| »»» uuid | string | true | none | none | |
| »»» sender_name | string | true | none | none | |
| »»» sender_phone | string | true | none | none | |
| »»» sender_email | null | true | none | none | |
| »»» sender_phonecode | string | true | none | none | |
| »»» sender_address | string | true | none | none | |
| »»» created_at | string | true | none | none | |
| »»» updated_at | string | true | none | none | |
| »» items | [object] | true | none | none | |
| »»» uuid | string | false | none | none | |
| »»» item_description | string | false | none | none | |
| »»» item_quantity | integer | false | none | none | |
| »»» item_value | string | false | none | none | |
| »»» created_at | string | false | none | none | |
| »» organization_detail | object | true | none | none | |
| »»» uuid | string | true | none | none | |
| »»» fleet_identity_number | null | true | none | none | |
| »»» business_address | null | true | none | none | |
| »»» phone_number | string | true | none | none | |
| »»» phone_code | string | true | none | none | |
| »»» logo | null | true | none | none | |
| »»» created_at | string | true | none | none | |
| »»» updated_at | string | true | none | none |
Copy
{
"status": "success",
"data": {
"uuid": "b0febc7b-91a0-43d2-a933-fc1c27dd25c3",
"order_number": "531886487269",
"fleet_id": null,
"status": "Awaiting Pickup",
"delivery_type": "intra_state",
"sender_longitude": "7.3445666",
"sender_latitude": "8.95625",
"customer_longitude": "7.4974495",
"customer_latitude": "9.0339358",
"delivery_fee": "3000",
"created_at": "2023-12-05T01:02:02.000000Z",
"customer_detail": {
"uuid": "caf911a3-7b66-4599-9b3a-aa26d7730e69",
"customer_name": "TundeNasri",
"customer_email": null,
"customer_phone_number": "08065302534",
"customer_phone_code": "234",
"customer_address": "12 Ahmadu Bello way, Central Business District, Abuja",
"created_at": "2023-12-04T22:03:06.000000Z"
},
"sender_detail": {
"uuid": "2743f3a5-b692-4c10-99f7-b3b941f0c3eb",
"sender_name": "Nuel Geek",
"sender_phone": "08087168391",
"sender_email": null,
"sender_phonecode": "234",
"sender_address": "Aso housing estate, lugbe",
"created_at": "2023-12-05T01:02:02.000000Z",
"updated_at": "2023-12-05T01:02:02.000000Z"
},
"items": [
{
"uuid": "a67c925e-c9bd-4829-ac2b-c429437f50e1",
"item_description": "Freshfish",
"item_quantity": 1,
"item_value": "10000.00",
"created_at": "2023-12-05T01:02:02.000000Z"
}
],
"organization_detail": {
"uuid": "9a7519bc-a726-4bff-a9aa-e77d627e2688",
"fleet_identity_number": null,
"business_address": null,
"phone_number": "8081939285",
"phone_code": "234",
"logo": null,
"created_at": "2023-11-30T16:57:27.000000Z",
"updated_at": "2023-11-30T16:57:27.000000Z"
}
}
}