GET v1/store
Gets the store to which the user is currently logged in.
The store unique ID and the currently logged-in user are identified by the provided security token.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Returns information about a store to which the user currently logged in.
StoreModelName | Description | Type | Additional information |
---|---|---|---|
ID |
The unique ID of the store. |
globally unique identifier |
None. |
FriendlyID |
The friendly ID of the store. |
integer |
None. |
Name |
The name of the store. |
string |
None. |
Description |
The description of the store. |
string |
None. |
ExternalID |
The ID of the store in an external application. |
string |
None. |
PrimaryCurrencyID |
The unique ID of the primary currency in the store. |
globally unique identifier |
None. |
ShowCurrencyCode |
Determines whether to show currency abbreviation. |
boolean |
None. |
RequireOrderApproval |
Indicates if orders in the store should be approved prior to submission. |
boolean |
None. |
TaxFormatType |
Defines whether the tax appears as part of the price in the store products. |
TaxFormatType |
None. |
TaxFormat |
The tax display format built using the following placeholders: {Price}, {Tax} and {PriceIncludingTax}. |
string |
None. |
SeoConfiguration |
The SEO configuration of the store. |
StoreSeoConfigurationModel |
None. |
StoreType |
The store type. |
StoreType |
None. |
Response Formats
application/json, text/json
{ "ID": "d89dec69-e7aa-473e-b252-89e319c9e8e5", "FriendlyID": 2, "Name": "sample string 3", "Description": "sample string 4", "ExternalID": "sample string 5", "PrimaryCurrencyID": "27bbd9e6-5a6f-47a4-b81b-ecfe25e4576f", "ShowCurrencyCode": true, "RequireOrderApproval": true, "TaxFormatType": 1, "TaxFormat": "sample string 9", "SeoConfiguration": { "TitleTag": "sample string 1", "TitleTagType": 1, "Title": "sample string 2", "Description": "sample string 3" }, "StoreType": 1, "Attributes": [ { "Name": "sample string 1", "Value": "sample string 2" }, { "Name": "sample string 1", "Value": "sample string 2" } ] }