GET api/Product/GetItemInventory?id={id}

Get Item Stock detail

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ItemInventory
NameDescriptionTypeAdditional information
ItemInventoryID

globally unique identifier

None.

ItemId

globally unique identifier

None.

WarehouseID

globally unique identifier

None.

WarehouseLocationID

globally unique identifier

None.

StockCount

decimal number

None.

StockReservations

decimal number

None.

Synced

boolean

None.

Updated

date

None.

Direction

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "$id": "1",
    "ItemInventoryID": "248aa4d5-6682-4207-bd5b-e541bbc0a902",
    "ItemId": "b02d69b5-2cd4-4787-832d-a7ed5b845026",
    "WarehouseID": "bc3f2516-446a-40ee-aefb-976197d49340",
    "WarehouseLocationID": "5fcfe7f2-a8f0-459f-9e61-ae28becf74e1",
    "StockCount": 5.0,
    "StockReservations": 6.0,
    "Synced": true,
    "Updated": "2024-05-16T10:08:55.8646699+02:00",
    "Direction": 9
  },
  {
    "$ref": "1"
  }
]