| Required permission: | all |
| GET | /items/{ItemNumber}/inventory |
|---|
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| ItemNumber | path | string | Yes | The number of the item to check the inventory for. |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| ItemNumber | form | string | No | The number of the item. |
| AvailableStock | form | decimal | No | The number of available stock for the item. |
| DispoCode | form | int | No | Dispo Code. |
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /items/{ItemNumber}/inventory HTTP/1.1
Host: bestellforum.api.mauve.de
Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
ItemNumber: String,
AvailableStock: 0,
DispoCode: 0
}