Get Free Shipping Option

Gets the current Store's Free Shipping option (if exists) whose Seller is associated with the user's bearer token making this API call.

Only works with the currently authenticated store.

{
    "totalItems": integer,
    "success": true,
    "errors": [],
    "results": [
        {
            "enabled": boolean,
            "threshold": integer,
            "shippingCategoryId": integer
        }
    ]
}
{
    "totalItems": 1,
    "success": true,
    "errors": [],
    "results": [
        {
            "enabled": false,
            "threshold": null,
            "shippingCategoryId": null
        }
    ]
}
Language
Click Try It! to start a request and see the response here!