Store
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.
Endpoints
GET
/store
Fetch a Store
GEThttps://production.rutterapi.com/versioned/store
Request Parameters
access_token
stringqueryRequiredThe access token of the connection.
expand
enumqueryOptionalInclude platform specific data (includes additional fields not provided by the Rutter object).
Must beplatform_data.
force_fetch
enumqueryOptionalUsed to force a response even if the underlying connection has not finished its initial sync.
One oftrue or false.
Response Body
Support by integration
- Shopify
- WooCommerce
- Amazon
- Stripe
200
Example Response BodyJSON
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 },
9 "connection": {
10 "id": "00000000-0000-0000-0000-000000000000",
11 "orgId": "00000000-0000-0000-0000-000000000000",
12 "platform": "SHOPIFY"
13 }
14}
Have questions?
Contact support for personalized guidance.