curl --request POST \
  --url https://dev.api.fleet.usedora.com/api/v1/deliveries/get/{delivery_uuid}
{
"status": "success",
"data": {
    "uuid": "e85616da-906c-4984-8980-069e7f3b2cd9",
    "order_number": "664481112612",
    "status": "Order Accepted",
    "delivery_type": "intra_state",
    "sender_longitude": "7.4724033",
    "sender_latitude": "9.0820999",
    "customer_longitude": "7.4974495",
    "customer_latitude": "9.0339358",
    "created_at": "2023-10-30T18:45:33.000000Z",
    "customer_detail": {
        "id": "8670aeb6-8299-4f0f-8915-31c7db66a7c0",
        "customer_name": "TundeNasri",
        "customer_email": "sinoma@gmail.com",
        "customer_state_id": 304,
        "customer_phone_number": "08065302534",
        "customer_phone_code": "234",
        "customer_address": "12 Ahmadu Bello way, Central Business District, Abuja",
        "created_at": "2023-10-30T18:45:33.000000Z"
    },
    "delivery_detail": {
        "uuid": "dc09555f-42ac-426b-963c-7d301ea4deb3",
        "sender_name": "Ac Nice",
        "sender_phone": "08087168391",
        "sender_phonecode": "234",
        "sender_address": "T-pumpy estate, phase 20 lugbe, Abuja",
        "delivery_total_order_value": "10000.00",
        "delivery_number_of_parcels": 1,
        "delivery_unit_weight": "10.00",
        "created_at": "2023-10-30T18:45:33.000000Z",
        "updated_at": "2023-10-30T18:45:33.000000Z"
    },
    "items": [
        {
            "uuid": "aee2ca50-bed0-40b3-90da-534097c39f91",
            "item_description": "Freshfish",
            "item_quantity": 1,
            "item_weight": "10.00",
            "item_value": "10000.00",
            "created_at": "2023-10-30T18:45:33.000000Z"
        }
    ],
    "organization_detail": {
        "uuid": "355c96cd-aa77-459e-9107-1223bea38f9b",
        "business_address": "Aso Housing Estate, Airport road, Abuja",
        "country_id": 161,
        "state_id": 303,
        "city": "Abuja",
        "logo": "https://usedora-bucket-dev.s3.amazonaws.com/provider-logos/mwFmcQ7ppveoNULRwL3AEyKtwoHT2KViXte8AYJA.jpg",
        "created_at": "2023-10-15T10:57:05.000000Z",
        "updated_at": "2023-10-28T16:40:21.000000Z"
    }
},
"message": "Delivery status updated"
}

๐Ÿ“ Summary

This endpoint allows updating the status of a specific delivery. The status can reflect various stages of the delivery process, such as pending, in transit, completed, or failed. This is typically used when there is a change in the deliveryโ€™s current state, helping to track its progress.


๐Ÿ“ฅ Requests

Body

๐Ÿ“ค Responses

โœ… 200 OK
โŒ 422 Bad Request
{
"status": "success",
"data": {
    "uuid": "e85616da-906c-4984-8980-069e7f3b2cd9",
    "order_number": "664481112612",
    "status": "Order Accepted",
    "delivery_type": "intra_state",
    "sender_longitude": "7.4724033",
    "sender_latitude": "9.0820999",
    "customer_longitude": "7.4974495",
    "customer_latitude": "9.0339358",
    "created_at": "2023-10-30T18:45:33.000000Z",
    "customer_detail": {
        "id": "8670aeb6-8299-4f0f-8915-31c7db66a7c0",
        "customer_name": "TundeNasri",
        "customer_email": "sinoma@gmail.com",
        "customer_state_id": 304,
        "customer_phone_number": "08065302534",
        "customer_phone_code": "234",
        "customer_address": "12 Ahmadu Bello way, Central Business District, Abuja",
        "created_at": "2023-10-30T18:45:33.000000Z"
    },
    "delivery_detail": {
        "uuid": "dc09555f-42ac-426b-963c-7d301ea4deb3",
        "sender_name": "Ac Nice",
        "sender_phone": "08087168391",
        "sender_phonecode": "234",
        "sender_address": "T-pumpy estate, phase 20 lugbe, Abuja",
        "delivery_total_order_value": "10000.00",
        "delivery_number_of_parcels": 1,
        "delivery_unit_weight": "10.00",
        "created_at": "2023-10-30T18:45:33.000000Z",
        "updated_at": "2023-10-30T18:45:33.000000Z"
    },
    "items": [
        {
            "uuid": "aee2ca50-bed0-40b3-90da-534097c39f91",
            "item_description": "Freshfish",
            "item_quantity": 1,
            "item_weight": "10.00",
            "item_value": "10000.00",
            "created_at": "2023-10-30T18:45:33.000000Z"
        }
    ],
    "organization_detail": {
        "uuid": "355c96cd-aa77-459e-9107-1223bea38f9b",
        "business_address": "Aso Housing Estate, Airport road, Abuja",
        "country_id": 161,
        "state_id": 303,
        "city": "Abuja",
        "logo": "https://usedora-bucket-dev.s3.amazonaws.com/provider-logos/mwFmcQ7ppveoNULRwL3AEyKtwoHT2KViXte8AYJA.jpg",
        "created_at": "2023-10-15T10:57:05.000000Z",
        "updated_at": "2023-10-28T16:40:21.000000Z"
    }
},
"message": "Delivery status updated"
}