Get store item by unique name

Gets a StoreItem by its unique url name. 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
uniqueName
required
string

The unique name of the Store to fetch.

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/GetStoreItemByUniqueName
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"
}