Get shop settings
GET
/shops/{id}/settingsAuthorization
AuthorizationBearer token (JWT) · headerrequiredPath parameters
idintegerrequiredResponses
200Shop with settings
_linksHalLinksidintegerseller_idintegeraccount_idintegernamestringsubdomainstringurlstringdescriptionstringlocalestringcurrency_codestringtimezonestringasset_countintegerproduct_countsobjectShow propertiesHide properties
visibleintegerblockedintegerhiddenintegerproducts_use_variant_pricesbooleancreated_onstring<date-time>updated_onstring<date-time>Request
curl -X GET "https://api.onbolder.com/v2/shops/0/settings" \
-H "Authorization: Bearer YOUR_TOKEN"const response = await fetch("https://api.onbolder.com/v2/shops/0/settings", {
method: "GET",
headers: {
"Authorization": "Bearer YOUR_TOKEN"
}
});import requests
response = requests.get(
"https://api.onbolder.com/v2/shops/0/settings",
headers={
"Authorization": "Bearer YOUR_TOKEN"
},
)Response
{
"id": 1,
"name": "My Store",
"subdomain": "mystore",
"currency": "USD",
"country": "US",
"tax_rate": 0.21,
"shipping_zones": [
"domestic",
"international"
],
"payment_methods": [
"credit_card",
"paypal"
],
"_links": {
"self": {
"href": "https://api.onbolder.com/v2/shops/1/settings"
}
}
}