The Store object
A Rutter Store represents information about the merchant's store, including a consumer-identifiable name, URL, and default currency.
Properties
id
stringThe Rutter generated unique ID of the store.
store_name
stringThe unique identifier or brand name of the store.
url
stringThe consumer facing URL of the store.
default_currency
stringnullableThe ISO 4217 currency code of the store.
email
stringoptionalThe email of the primary contact of the store.
Example Store Object
{
"id": "00000000-0000-0000-0000-000000000000",
"store_name": "The Rutter Store",
"url": "https://www.rutter.com",
"default_currency": "USD",
"email": "eric@rutter.com"
}
Fetch a Store
GET /storeSupported for: AmazonBigCommerceEbayEtsyLazadaMagentoMercado LibrePrestaShopShopifyShoplazzaSquareSquarespaceStripeWalmartWixWooCommerce
Request Parameters
access_token
stringqueryThe access token of the connection.
expand
enumoptionalqueryOptionally, include raw external platform data when fetching data.
Can beplatform_data.
force_fetch
enumoptionalqueryForce a response even if the underlying connection hasn't finished the initial sync.
One oftrue or false.
Response Body
connection
objectoptionalShow
connection
attributesstore
nullableShow
store
attributesExample Response Body
{
"connection": {
"id": "00000000-0000-0000-0000-000000000000",
"orgId": "00000000-0000-0000-0000-000000000000",
"platform": "SHOPIFY"
},
"store": {
"id": "00000000-0000-0000-0000-000000000000",
"store_name": "The Rutter Store",
"url": "https://www.rutter.com",
"default_currency": "USD",
"email": "eric@rutter.com"
}
}