Get shop ordering settings
GET
/shops/{id}/settings/ordering
const url = 'https://example.com/shops/example/settings/ordering';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/shops/example/settings/orderingParameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
Responses
Section titled “ Responses ” Media type application/json
object
shipping_base_cost
shipping_unit_cost
Example
{ "shipping_base_cost": "NaN", "shipping_unit_cost": "NaN", "vat": "NaN"}