POST api/mapx/SavePhysicalStockTaking
Request Information
URI Parameters
None.
Body Parameters
PhysicalStockTakingObject| Name | Description | Type | Additional information |
|---|---|---|---|
| DBName | string |
None. |
|
| UserInternalCode | string |
None. |
|
| BranchInternalCode | string |
None. |
|
| ItemClassificationType | string |
None. |
|
| ItemClassificationCodeList | string |
None. |
|
| TotalSystemQty | decimal number |
None. |
|
| TotalMatchedQty | decimal number |
None. |
|
| TotalUnscannedQty | decimal number |
None. |
|
| TotalUnmatchedExcessQty | decimal number |
None. |
|
| Notes | string |
None. |
|
| physMatchedIMEIs | Collection of PhysMatchedIMEINos |
None. |
|
| physUnscannedIMEIs | Collection of PhysUnscannedIMEINos |
None. |
|
| physUnmatchedExcessIMEIs | Collection of PhysUnmatchedExcessIMEINos |
None. |
Request Formats
application/json, text/json
Sample:
{
"DBName": "sample string 1",
"UserInternalCode": "sample string 2",
"BranchInternalCode": "sample string 3",
"ItemClassificationType": "sample string 4",
"ItemClassificationCodeList": "sample string 5",
"TotalSystemQty": 6.1,
"TotalMatchedQty": 7.1,
"TotalUnscannedQty": 8.1,
"TotalUnmatchedExcessQty": 9.1,
"Notes": "sample string 10",
"physMatchedIMEIs": [
{
"ItemInternalCode": "sample string 1",
"IMEINo": "sample string 2"
},
{
"ItemInternalCode": "sample string 1",
"IMEINo": "sample string 2"
}
],
"physUnscannedIMEIs": [
{
"ItemInternalCode": "sample string 1",
"IMEINo": "sample string 2"
},
{
"ItemInternalCode": "sample string 1",
"IMEINo": "sample string 2"
}
],
"physUnmatchedExcessIMEIs": [
{
"IMEINo": "sample string 1"
},
{
"IMEINo": "sample string 1"
}
]
}
application/xml, text/xml
Sample:
<PhysicalStockTakingObject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APXWebAPI.Models">
<BranchInternalCode>sample string 3</BranchInternalCode>
<DBName>sample string 1</DBName>
<ItemClassificationCodeList>sample string 5</ItemClassificationCodeList>
<ItemClassificationType>sample string 4</ItemClassificationType>
<Notes>sample string 10</Notes>
<TotalMatchedQty>7.1</TotalMatchedQty>
<TotalSystemQty>6.1</TotalSystemQty>
<TotalUnmatchedExcessQty>9.1</TotalUnmatchedExcessQty>
<TotalUnscannedQty>8.1</TotalUnscannedQty>
<UserInternalCode>sample string 2</UserInternalCode>
<physMatchedIMEIs>
<PhysMatchedIMEINos>
<IMEINo>sample string 2</IMEINo>
<ItemInternalCode>sample string 1</ItemInternalCode>
</PhysMatchedIMEINos>
<PhysMatchedIMEINos>
<IMEINo>sample string 2</IMEINo>
<ItemInternalCode>sample string 1</ItemInternalCode>
</PhysMatchedIMEINos>
</physMatchedIMEIs>
<physUnmatchedExcessIMEIs>
<PhysUnmatchedExcessIMEINos>
<IMEINo>sample string 1</IMEINo>
</PhysUnmatchedExcessIMEINos>
<PhysUnmatchedExcessIMEINos>
<IMEINo>sample string 1</IMEINo>
</PhysUnmatchedExcessIMEINos>
</physUnmatchedExcessIMEIs>
<physUnscannedIMEIs>
<PhysUnscannedIMEINos>
<IMEINo>sample string 2</IMEINo>
<ItemInternalCode>sample string 1</ItemInternalCode>
</PhysUnscannedIMEINos>
<PhysUnscannedIMEINos>
<IMEINo>sample string 2</IMEINo>
<ItemInternalCode>sample string 1</ItemInternalCode>
</PhysUnscannedIMEINos>
</physUnscannedIMEIs>
</PhysicalStockTakingObject>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |