get https://api.tcgplayer.com/stores//freeshipping/settings
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
}
]
}