Get store item

Gets a StoreItem by Id. 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
id
required
integer <int32>

The internal Id 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/GetStoreItem
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"
}