POST api/LoadDatas/PODCheckIn
Request Information
URI Parameters
None.
Body Parameters
CheckInModel| Name | Description | Type | Additional information |
|---|---|---|---|
| compID | string |
None. |
|
| HHID | string |
None. |
|
| jobID | string |
None. |
|
| jobStatus | string |
None. |
|
| lat | string |
None. |
|
| lng | string |
None. |
|
| crDate | date |
None. |
|
| action | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"compID": "sample string 1",
"HHID": "sample string 2",
"jobID": "sample string 3",
"jobStatus": "sample string 4",
"lat": "sample string 5",
"lng": "sample string 6",
"crDate": "2025-11-09T14:05:14.8430037+07:00",
"action": "sample string 8"
}
application/xml, text/xml
Sample:
<CheckInModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Android_API.Models"> <HHID>sample string 2</HHID> <action>sample string 8</action> <compID>sample string 1</compID> <crDate>2025-11-09T14:05:14.8430037+07:00</crDate> <jobID>sample string 3</jobID> <jobStatus>sample string 4</jobStatus> <lat>sample string 5</lat> <lng>sample string 6</lng> </CheckInModel>
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>