Get multiple specific shipments

You can use this endpoint if you want to get details about multiple specific shipments.

The MAX number of shipments per request is 50

GET https://api.shipbubble.com/v1/shipping/labels/list/:order_ids

Path Parameters

{
    "status": "success",
    "message": "Retrieved successfully",
    "data": {
        "results": [
            {
                "order_id": "SB-6B211535C528",
                "status": "picked_up",
                "courier": {
                    "name": "Redstar (pickup)",
                    "email": "redstar@redstar.com",
                    "phone": "08023374847",
                     "tracking_code": "SA01203663",
                     "tracking_message": "WaybillNumber: SA01203663",
                     "rider_info": null
                },
                "ship_from": {
                    "name": "Lebron James",
                    "phone": "+2348057575855",
                    "email": "lebron@james.com",
                    "address": "Phase 1, 4 Michael Olawale-Cole Dr, Lekki Phase I 106104, Lagos, Nigeria",
                    "latitude": 6.459056599999999,
                    "longitude": 3.4769383
                },
                "ship_to": {
                    "name": "Lebron James",
                    "email": "lebron@james.com",
                    "phone": "+2348057575855",
                    "address": "Alh. Masha Rd, Surulere 101241, Lagos, Nigeria",
                    "latitude": 6.499872799999999,
                    "longitude": 3.3609343
                },
                "package_status": [
                    {
                        "status": "Pending",
                        "datetime": "2022-02-14 22:58:02"
                    }
                ],
                "events": [],
                "waybill_document": null,
                "dropoff_station": null,
                "pickup_station": null,
                "tracking_url": "https://localhost:5000/orders/tracking/GET-BB7EDE9F",
                "date": "2022-01-28T01:17:46.000Z"
            }
        ]
    }
}

Last updated