POST api/Process/ScanQR
Request Information
URI Parameters
None.
Body Parameters
LabelViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| processmasterid | integer |
None. |
|
| customername | string |
None. |
|
| location | string |
None. |
|
| grpinvoiceno | string |
None. |
|
| boxno | string |
None. |
|
| labelfooter | string |
None. |
|
| isscanned | boolean |
None. |
|
| issuccess | boolean |
None. |
|
| boxscan | boolean |
None. |
|
| processcomplete | boolean |
None. |
|
| boxmasterid | integer |
None. |
|
| loginmasterid | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"processmasterid": 1,
"customername": "sample string 2",
"location": "sample string 3",
"grpinvoiceno": "sample string 4",
"boxno": "sample string 5",
"labelfooter": "sample string 6",
"isscanned": true,
"issuccess": true,
"boxscan": true,
"processcomplete": true,
"boxmasterid": 11,
"loginmasterid": 12
}
application/xml, text/xml
Sample:
<LabelViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/atulsales_api.Models"> <boxmasterid>11</boxmasterid> <boxno>sample string 5</boxno> <boxscan>true</boxscan> <customername>sample string 2</customername> <grpinvoiceno>sample string 4</grpinvoiceno> <isscanned>true</isscanned> <issuccess>true</issuccess> <labelfooter>sample string 6</labelfooter> <location>sample string 3</location> <loginmasterid>12</loginmasterid> <processcomplete>true</processcomplete> <processmasterid>1</processmasterid> </LabelViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResultViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| status | boolean |
None. |
|
| message | string |
None. |
|
| data | Object |
None. |
|
| errorCode | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": true,
"message": "sample string 2",
"data": {},
"errorCode": 4
}
application/xml, text/xml
Sample:
<HttpResultViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/atulsales_api.Models"> <data /> <errorCode>4</errorCode> <message>sample string 2</message> <status>true</status> </HttpResultViewModel>