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": "0c762bf9-96d7-4768-8952-03cd7e978ca8",
"CompanyId": "7fba1140-5393-4ec9-b61a-d22abe38deda",
"SSCC": "sample string 3",
"ItemId": "5abc2cd0-15b7-4a8d-86a3-cd7b70533353",
"CountedItemContentList": [
{
"ProductPackagingId": "7e976c4c-73ed-4c0a-8cd0-955cfd796cdd",
"CountedQuantity": 2.0,
"CountedWeight": 3.0,
"BatchNumber": "sample string 4",
"SerialNumber": "sample string 5",
"ExpireDate": "2026-06-25T16:07:57.4574185+02:00"
},
{
"ProductPackagingId": "7e976c4c-73ed-4c0a-8cd0-955cfd796cdd",
"CountedQuantity": 2.0,
"CountedWeight": 3.0,
"BatchNumber": "sample string 4",
"SerialNumber": "sample string 5",
"ExpireDate": "2026-06-25T16:07:57.4574185+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"
}