GET api/shopping/settings?country={country}&repDID={repDID}&customerDID={customerDID}

Gets all the settings used by the cart as key/value pairs.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
country

string

None.

repDID

string

None.

customerDID

string

None.

Body Parameters

None.

Response Information

Resource Description

Dictionary of string [key] and string [value]

Response Formats

application/xml, text/xml

Sample:
<DictionaryOfStringString>
  <KeyValuePairOfStringString>
    <Key>sample string 1</Key>
    <Value>sample string 2</Value>
  </KeyValuePairOfStringString>
  <KeyValuePairOfStringString>
    <Key>sample string 3</Key>
    <Value>sample string 4</Value>
  </KeyValuePairOfStringString>
</DictionaryOfStringString>

application/json, text/json

Sample:
{
  "sample string 1": "sample string 2",
  "sample string 3": "sample string 4"
}