Store
The Store Object
A Rutter Store represents information about the merchant's store, including a consumer-identifiable name, URL, and default currency.
Properties
idstringThe Rutter generated unique ID of the store.
platform_idstringOptionalThe platform's unique identifier for the store. Supported for Amazon and Shopify.
store_namestringThe unique identifier or brand name of the store.
urlstringThe consumer facing URL of the store.
default_currencystringnullableThe ISO 4217 currency code of the store.
emailstringOptionalThe email of the primary contact of the store.
platform_dataobjectOptionalThe raw platform data corresponding to the Rutter object.
Fetch a Store
Request Parameters
access_tokenstringqueryRequiredThe access token of the connection.
expandenumqueryOptionalInclude platform specific data (includes additional fields not provided by the Rutter object).
force_fetchenumqueryOptionalUsed to force a response even if the underlying connection has not finished its initial sync.
Response Body
1{
2 "store": {
3 "id": "00000000-0000-0000-0000-000000000000",
4 "store_name": "The Rutter Store",
5 "url": "https://www.rutter.com",
6 "default_currency": "USD",
7 "email": "eric@rutter.com",
8 "platform_data": {
9 "id": 123,
10 "data": "Varies by platform"
11 }
12 },
13 "connection": {
14 "id": "00000000-0000-0000-0000-000000000000",
15 "orgId": "00000000-0000-0000-0000-000000000000",
16 "platform": "SHOPIFY"
17 }
18}
Have questions?
Contact support for personalized guidance.