Get a shipping table
GET
/shipping_tables/{id}Authorization
AuthorizationBearer token (JWT) · headerrequiredPath parameters
idintegerrequiredResponses
200Shipping table details
Request
curl -X GET "https://api.onbolder.com/v2/shipping_tables/0" \
-H "Authorization: Bearer YOUR_TOKEN"const response = await fetch("https://api.onbolder.com/v2/shipping_tables/0", {
method: "GET",
headers: {
"Authorization": "Bearer YOUR_TOKEN"
}
});import requests
response = requests.get(
"https://api.onbolder.com/v2/shipping_tables/0",
headers={
"Authorization": "Bearer YOUR_TOKEN"
},
)Response
Shipping table details