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": "77a2f8ae-dfa8-4e7e-8fb1-5c2795709e77",
"CompanyId": "e95732a8-8a19-4c4e-9ba3-8c73933b7460",
"SSCC": "sample string 3",
"ItemId": "0f4819b5-eac2-4096-a2a1-0c7099098d90",
"CountedItemContentList": [
{
"ProductPackagingId": "d0bb1b6b-98af-4342-9993-314b1327043d",
"CountedQuantity": 2.0,
"CountedWeight": 3.0,
"BatchNumber": "sample string 4",
"SerialNumber": "sample string 5",
"ExpireDate": "2026-08-24T14:33:02.6590212+02:00"
},
{
"ProductPackagingId": "d0bb1b6b-98af-4342-9993-314b1327043d",
"CountedQuantity": 2.0,
"CountedWeight": 3.0,
"BatchNumber": "sample string 4",
"SerialNumber": "sample string 5",
"ExpireDate": "2026-08-24T14:33:02.6590212+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"
}