POST ValidateStack
No documentation available.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| request | No documentation available. |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"stackID": 1,
"productCategory": 2,
"customerID": 3,
"rfids": [
"sample string 1",
"sample string 2",
"sample string 3"
],
"token": "sample string 4",
"function": 0
}
application/x-www-form-urlencoded
Sample:
Sample not available.
application/xml, text/xml
Sample:
<ValidateStackRequest>
<token>sample string 4</token>
<function>AddCleanBag</function>
<stackID>1</stackID>
<productCategory>2</productCategory>
<customerID>3</customerID>
<rfids>
<string>sample string 1</string>
<string>sample string 2</string>
<string>sample string 3</string>
</rfids>
</ValidateStackRequest>
Response Information
No documentation available.
Response body formats
application/json, text/json
Sample:
{
"isNOG": true,
"isResort": true,
"barcode": "sample string 3",
"valid": true,
"message": "sample string 5"
}
application/xml, text/xml
Sample:
<ValidateStackResponse> <valid>true</valid> <message>sample string 5</message> <isNOG>true</isNOG> <isResort>true</isResort> <barcode>sample string 3</barcode> </ValidateStackResponse>