GET api/Resources/WebshopCountries
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of CountryInfoName | Description | Type | Additional information |
---|---|---|---|
CountryCode | string |
None. |
|
CurrencyCode | string |
None. |
|
DeliveryCostMax | decimal number |
None. |
|
DeliveryCostFreeLimit | decimal number |
None. |
|
CurrencySymbol | string |
None. |
|
LocalizedName | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "CountryCode": "sample string 1", "CurrencyCode": "sample string 2", "DeliveryCostMax": 3.0, "DeliveryCostFreeLimit": 4.0, "CurrencySymbol": "sample string 5", "LocalizedName": "sample string 6" }, { "CountryCode": "sample string 1", "CurrencyCode": "sample string 2", "DeliveryCostMax": 3.0, "DeliveryCostFreeLimit": 4.0, "CurrencySymbol": "sample string 5", "LocalizedName": "sample string 6" } ]
application/xml, text/xml
Sample:
<ArrayOfCountryInfo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <CountryInfo> <CountryCode>sample string 1</CountryCode> <CurrencyCode>sample string 2</CurrencyCode> <DeliveryCostMax>3</DeliveryCostMax> <DeliveryCostFreeLimit>4</DeliveryCostFreeLimit> <CurrencySymbol>sample string 5</CurrencySymbol> <LocalizedName>sample string 6</LocalizedName> </CountryInfo> <CountryInfo> <CountryCode>sample string 1</CountryCode> <CurrencyCode>sample string 2</CurrencyCode> <DeliveryCostMax>3</DeliveryCostMax> <DeliveryCostFreeLimit>4</DeliveryCostFreeLimit> <CurrencySymbol>sample string 5</CurrencySymbol> <LocalizedName>sample string 6</LocalizedName> </CountryInfo> </ArrayOfCountryInfo>