Packaging

Sendstack has a curated list of packaging sizing which provides information on the sizes of items we can deliver.

You can see all available sizing using the request format below.

Get packaging

GET {baseUrl}/deliveries/packagings

Get all packaging options

// Sample Response Body - 200 OK
{
    "status": true,
    "message": "Packaging options successfully retrieved",
    "data": [
        {
            "_id": "64f8eafb0ad821281e017fb1",
            "__v": 0,
            "createdAt": "2023-09-06T21:11:23.342Z",
            "height": 12,
            "length": 12,
            "name": "Sendstack Standard",
            "updatedAt": "2023-09-06T21:11:23.342Z",
            "width": 33
        },
        //...truncated for brevity
    ]
}

Last updated