GET Bundle SKU

Shipper API gives interface access to our clients to get Bundle SKU from their own system to Shipper Order Management System

Authorizations : X-API-Key_Header

Request Body Schema : application/json

MethodEndpoint
GET/v3/fulfillment/bundle/stock

Body Request Parameter

ParameterTypeMandatory/OptionalNote
merchant_idintegerMandatoryThe ID of the merchant
warehouse_codesstringOptionalThe code(s) of the warehouse(s), the concept is aloshoo warehouse, shipperOMS will do the conversion.
bundlesstringOptionalthe bundle name
skusstringOptionalthe SKU name
shop_codestringOptionalThe code of the shop
pageintegerOptionalthe page of the result, default 1
limitintegerOptionalthe size of the result in each page,default 20

Sample Request

{{host}}/v3/fulfillment/bundle?merchant_id={{adamkong_merchant_id}}&warehouse_codes=MP2-WH-TGR04&warehouse_codes=MP3-WH-TGR04&shop_code=CS283

Response Parameters

ParameterTypeNote
dataarrayThe list of packages
paginationobjectThe pagination information
metadataobjectThe metadata information
idintegerThe ID of the package
bundle_codestringThe code of the package
owner_codestringThe code of the owner of the package
shop_codestringThe code(s) of the shop(s)
warehouse_codestringThe code(s) of the warehouse(s)
skusarrayThe information of the products in the package
bundlestringThe name of the package
bundle_sourcestringThe source of the package
bundle_descstringThe description of the package
operatorstringThe operator of the package
statusstringThe status of the package
gmt_createintegerThe timestamp when the package was created
gmt_modifiedintegerThe timestamp when the package was last modified
skustringThe SKU of the product
qtyintegerThe quantity of the product

Sample Response

{
    "data": [
        {
            "id": 473,
            "bundle_code": "BU202304240220006711",
            "owner_code": "ADAMKONG123456789-1",
            "shop_code": [
                "CS283"
            ],
            "warehouse_code": [
                "WH-CGK09",
                "WH-TGR04"
            ],
            "skus": [
                {
                    "sku": "ZHANGSKU12311",
                    "qty": 2
                },
                {
                    "sku": "ZHANGSKU12314",
                    "qty": 1
                }
            ],
            "bundle": "KEVINDAIPOSTMANBUNDLE01",
            "bundle_source": "aloshop",
            "bundle_desc": "",
            "operator": "[email protected]",
            "status": "Active",
            "gmt_create": 1682302811812,
            "gmt_modified": 1682324170184
        },
        {
            "id": 409,
            "bundle_code": "BU202303030302706057",
            "owner_code": "ADAMKONG123456789-1",
            "shop_code": [
                "CS283",
                "CS242"
            ],
            "warehouse_code": [
                "WH-TGR04",
                "WH-CGK09"
            ],
            "skus": [
                {
                    "sku": "ZHANGSKU12320",
                    "qty": 1
                },
                {
                    "sku": "ZHANGSKU12319",
                    "qty": 1
                }
            ],
            "bundle": "ASSIGN_0409_1920OK",
            "bundle_source": "omsPortal",
            "bundle_desc": "",
            "operator": "[email protected]",
            "status": "Active",
            "gmt_create": 1677812522292,
            "gmt_modified": 1677812611113
        },
        {
            "id": 403,
            "bundle_code": "BU202303020657705910",
            "owner_code": "ADAMKONG123456789-1",
            "shop_code": [
                "CS242",
                "CS283"
            ],
            "warehouse_code": [
                "WH-TGR04",
                "WH-CGK09"
            ],
            "skus": [
                {
                    "sku": "ZHANGSKU1235",
                    "qty": 1
                },
                {
                    "sku": "ZHANGSKU1234",
                    "qty": 1
                }
            ],
            "bundle": "BUNDLE-CGK09TGR04",
            "bundle_source": "omsPortal",
            "bundle_desc": "",
            "operator": "[email protected]",
            "status": "Active",
            "gmt_create": 1677740256095,
            "gmt_modified": 1678429273823
        }
    ],
    "pagination": {
        "current_page": 1,
        "current_elements": 3,
        "total_pages": 1,
        "total_elements": 3,
        "sort_by": null
    },
    "metadata": {
        "path": "/v3/fulfillment/bundle",
        "status": "OK",
        "message": "GET /v3/fulfillment/bundle [200] OK",
        "timestamp": 1682416713,
        "http_status_code": 200
    }
}