Regional Pricing
get
Authorizations
Path parameters
storeIdstring · flake-idRequiredExample:
411486491630370816
productIdstring · flake-idRequiredExample:
411486491630370816
Responses
200
OK
application/json
default
Error response
application/json
get
GET /v1/stores/{storeId}/products/{productId}/pricing/regions HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
[
{
"id": "text",
"group_id": "text",
"local_currency": "text",
"local_currency_fx_rate": 1,
"blended_vat_rate": 1,
"name": "text",
"country_codes": [
"text"
],
"enabled": true,
"price": 1,
"default_price_multiplier": 1,
"currency": "text",
"tax_inclusive": true,
"updated_at": "2025-08-02T19:52:08.911Z"
}
]
patch
Authorizations
Path parameters
storeIdstring · flake-idRequiredExample:
411486491630370816
productIdstring · flake-idRequiredExample:
411486491630370816
regionIdstringRequired
Body
priceinteger · int64 | nullableOptional
enabledboolean | nullableOptional
currencystring | nullableOptional
tax_inclusiveboolean | nullableOptional
Responses
204
No Content
default
Error response
application/json
patch
PATCH /v1/stores/{storeId}/products/{productId}/pricing/regions/{regionId} HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 65
{
"price": 1,
"enabled": true,
"currency": "text",
"tax_inclusive": true
}
No content
get
Authorizations
Path parameters
storeIdstring · flake-idRequiredExample:
411486491630370816
Responses
200
OK
application/json
default
Error response
application/json
get
GET /v1/stores/{storeId}/products/pricing/regions HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
[
{
"id": "text",
"group_id": "text",
"local_currency": "text",
"local_currency_fx_rate": 1,
"blended_vat_rate": 1,
"name": "text",
"country_codes": [
"text"
],
"enabled": true,
"price": 1,
"default_price_multiplier": 1,
"currency": "text",
"tax_inclusive": true,
"updated_at": "2025-08-02T19:52:08.911Z"
}
]
patch
Authorizations
Path parameters
storeIdstring · flake-idRequiredExample:
411486491630370816
regionIdstringRequired
Body
default_price_multiplierinteger · int64 | nullableOptional
enabledboolean | nullableOptional
currencystring | nullableOptional
tax_inclusiveboolean | nullableOptional
Responses
204
No Content
default
Error response
application/json
patch
PATCH /v1/stores/{storeId}/products/pricing/regions/{regionId} HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 84
{
"default_price_multiplier": 1,
"enabled": true,
"currency": "text",
"tax_inclusive": true
}
No content
get
Authorizations
Path parameters
storeIdstring · flake-idRequiredExample:
411486491630370816
Responses
200
OK
application/json
default
Error response
application/json
get
GET /v1/stores/{storeId}/products/pricing/region-groups HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
[
{
"id": "text",
"name": "text",
"description": "text",
"recommended_base_price_multiplier": 1
}
]
Was this helpful?