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": "65a132cd-86ed-41a2-9be7-d91ff0e27960",
"CompanyId": "1aa30c84-cdbc-444e-b414-3115a4141894",
"SSCC": "sample string 3",
"ItemId": "43c44cf9-81cd-4e2e-bbd3-12015b1060c7",
"CountedItemContentList": [
{
"ProductPackagingId": "7947754f-aa73-4838-b649-8be145b4c618",
"CountedQuantity": 2.0,
"CountedWeight": 3.0,
"BatchNumber": "sample string 4",
"SerialNumber": "sample string 5",
"ExpireDate": "2026-06-25T11:36:05.6158691+02:00"
},
{
"ProductPackagingId": "7947754f-aa73-4838-b649-8be145b4c618",
"CountedQuantity": 2.0,
"CountedWeight": 3.0,
"BatchNumber": "sample string 4",
"SerialNumber": "sample string 5",
"ExpireDate": "2026-06-25T11:36:05.6158691+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"
}