POST api/StockCountOrder/DirectItemContentStockCount
Register new counted content on item directly as a finishedd stock count including an archived stock count order
Request Information
URI Parameters
None.
Body Parameters
Specifying the the values needed to update the item content
DirectItemStockCountParameters| Name | Description | Type | Additional information |
|---|---|---|---|
| SystemUserId | globally unique identifier |
None. |
|
| CompanyId | globally unique identifier |
None. |
|
| SSCC | string |
None. |
|
| ItemId | globally unique identifier |
None. |
|
| CountedItemContentList | Collection of DirectItemStockCountContent |
None. |
Request Formats
application/json, text/json
Sample:
{
"SystemUserId": "f9697aa9-94c8-4d93-9df9-55891434d8e4",
"CompanyId": "297480d6-c199-4465-867b-cba3c00d004f",
"SSCC": "sample string 3",
"ItemId": "d45d91d3-66df-44bd-bad3-d4ca7b09d1c2",
"CountedItemContentList": [
{
"ProductPackagingId": "065664ac-6213-43a6-9339-aff4d6d25d1b",
"CountedQuantity": 2.0,
"CountedWeight": 3.0,
"BatchNumber": "sample string 4",
"SerialNumber": "sample string 5",
"ExpireDate": "2026-08-24T14:32:46.3191728+02:00"
},
{
"ProductPackagingId": "065664ac-6213-43a6-9339-aff4d6d25d1b",
"CountedQuantity": 2.0,
"CountedWeight": 3.0,
"BatchNumber": "sample string 4",
"SerialNumber": "sample string 5",
"ExpireDate": "2026-08-24T14:32:46.3191728+02:00"
}
]
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
DirectItemContentStockCountMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| IsSuccess | boolean |
None. |
|
| InformationMessage | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsSuccess": true,
"InformationMessage": "sample string 2"
}