POST api/LoadDatas/PODCheckOut
Request Information
URI Parameters
None.
Body Parameters
CheckOutModel| Name | Description | Type | Additional information |
|---|---|---|---|
| compID | string |
None. |
|
| HHID | string |
None. |
|
| jobID | string |
None. |
|
| lat | string |
None. |
|
| lng | string |
None. |
|
| crDate | date |
None. |
|
| outAction | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"compID": "sample string 1",
"HHID": "sample string 2",
"jobID": "sample string 3",
"lat": "sample string 4",
"lng": "sample string 5",
"crDate": "2025-11-09T14:05:14.7023804+07:00",
"outAction": "sample string 7"
}
application/xml, text/xml
Sample:
<CheckOutModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Android_API.Models"> <HHID>sample string 2</HHID> <compID>sample string 1</compID> <crDate>2025-11-09T14:05:14.7023804+07:00</crDate> <jobID>sample string 3</jobID> <lat>sample string 4</lat> <lng>sample string 5</lng> <outAction>sample string 7</outAction> </CheckOutModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResultWithModel| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
|
| message | string |
None. |
|
| refcode | string |
None. |
|
| total | integer |
None. |
|
| datas | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"message": "sample string 2",
"refcode": "sample string 3",
"total": 4,
"datas": {}
}
application/xml, text/xml
Sample:
<ResultWithModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Android_API.Models"> <datas /> <message>sample string 2</message> <refcode>sample string 3</refcode> <success>true</success> <total>4</total> </ResultWithModel>