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.
url
stringThe consumer facing URL of the store.
default_currency
stringnullableThe ISO 4217 currency code of the store.
store_name
stringThe unique identifier or brand name of the store.
email
stringoptionalThe email of the primary contact of the store.
Example Store Object
{
"id": "00000000-0000-0000-0000-000000000000",
"url": "https://www.rutter.com",
"default_currency": "USD",
"store_name": "The Rutter Store",
"email": "eric@rutter.com"
}
Fetch a Store
GET /storeSupported for: AmazonBigCommerceEbayEtsyLazadaMagentoMercado LibrePrestaShopShopifyShoplazzaSquareSquarespaceStripeWixWooCommerce
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
store
nullableShow
store
attributesconnection
ConnectionoptionalShow
connection
attributesExample Response Body
{
"store": {
"id": "00000000-0000-0000-0000-000000000000",
"url": "https://www.rutter.com",
"default_currency": "USD",
"store_name": "The Rutter Store",
"email": "eric@rutter.com"
},
"connection": {
"id": "00000000-0000-0000-0000-000000000000",
"platform": "SHOPIFY",
"orgId": "00000000-0000-0000-0000-000000000000"
}
}