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": "b35c6423-e97e-489e-85f7-8b1bfdd61d8f",
"CompanyId": "20d2bb06-3d75-4e74-97ed-d9dbd0a21c4e",
"SSCC": "sample string 3",
"ItemId": "82003b12-ef84-4e5e-bb69-e5ca1f78fa98",
"CountedItemContentList": [
{
"ProductPackagingId": "e72b4d20-d6d4-4bc9-abac-77657757b154",
"CountedQuantity": 2.0,
"CountedWeight": 3.0,
"BatchNumber": "sample string 4",
"SerialNumber": "sample string 5",
"ExpireDate": "2026-06-25T11:36:00.7161508+02:00"
},
{
"ProductPackagingId": "e72b4d20-d6d4-4bc9-abac-77657757b154",
"CountedQuantity": 2.0,
"CountedWeight": 3.0,
"BatchNumber": "sample string 4",
"SerialNumber": "sample string 5",
"ExpireDate": "2026-06-25T11:36:00.7161508+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"
}