Get store item by country and zipcode

Gets a StoreItem by country and zip code. Should be used to display details about a StoreItem or when just data for a single StoreItem is needed. Returns null if the StoreItem does not exist.

Request
query Parameters
countryId
string

Specifies in which countryId. If none is supplied, value is resolved from Application default. Valid countryIds can be found in Application.Countries.

zipCode
required
integer <int32>

The zip code of the end user. The StoreItem is resolved by looking at deliveryMethod locations as set up in StormAdmin.

partNo
string

If supplied, the returned StoreItem will have information about onHand.

cultureCode
string

Specifies in which language to display culture specific information. If none is supplied, value is resolved from Application.

Responses
200

Success

500

Internal Server Error

get/ApplicationService.svc/rest/GetStoreItemByCountryAndZipCode
Response samples
{
  • "Id": 0,
  • "Name": "string",
  • "Address": "string",
  • "PostalAddress": "string",
  • "OnHandValue": 0,
  • "IncomingValue": 0,
  • "NextDeliveryDate": "2019-08-24T14:15:22Z",
  • "Distance": 0,
  • "Type": "string",
  • "SubType": "string",
  • "Code": "string",
  • "OnHand": {
    },
  • "OnHandDemo": {
    },
  • "UniqueName": "string"
}