Knowledge Base > Bulky Freight Ship Table > API

API


Preliminaries


Our API endpoint is:

https://bc-bulkyship.myintegrator.com.au/api/store/{store_code}

The {store_code} is your store’s hash code. Found at the top of (General Settings).
You must supply a Bearer token. The token can be found in the (Advanced Settings).
There are no limitations as of now. It can take some time to push thousands of products.


Operations


Bulk Upsert (Insert or Update)

POST https://bc-bulkyship.myintegrator.com.au/api/store/{store_code}/skuBulks/bulk

Example Request (Body):

{
    "skuBulks": [
        {
            "sku": "TEST-123",
            "is_bulk_item": 1
        },
        {
            "sku": "TEST-456",
            "is_bulk_item": 1
        },
        {
            "sku": "TEST-789",
            "is_bulk_item": 0
        },
    ]
}

Example Response:

{
    "data": {
        "records_affected": 3
    },
    "errors": {
        "skuBulks": []
    }
}

Bulk Delete

DELETE https://bc-bulkyship.myintegrator.com.au/api/store/{store_code}/skuBulks/bulk

Will delete all the SKU for bulky item data. Same behaviour as “Purge SKU Bulk Data” in the SKU CSV Settings tab.

Example Response:

{
    "data": [],
    "message": "",
    "success": true
}

Did you find this article useful?