POST api/LoadDatas/Milestone
Request Information
URI Parameters
None.
Body Parameters
UpdateMilestoneModel| Name | Description | Type | Additional information |
|---|---|---|---|
| No | integer |
None. |
|
| HHID | string |
None. |
|
| JobNo | string |
None. |
|
| MilestoneID | string |
None. |
|
| JobStatus | string |
None. |
|
| Lat | decimal number |
None. |
|
| Lng | decimal number |
None. |
|
| CreateDate | date |
None. |
|
| RefCode | string |
None. |
|
| ImageName | string |
None. |
|
| ImageData | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"No": 1,
"HHID": "sample string 2",
"JobNo": "sample string 3",
"MilestoneID": "sample string 4",
"JobStatus": "sample string 5",
"Lat": 1.0,
"Lng": 1.0,
"CreateDate": "2025-11-09T14:12:04.2213884+07:00",
"RefCode": "sample string 6",
"ImageName": "sample string 7",
"ImageData": "sample string 8"
}
application/xml, text/xml
Sample:
<UpdateMilestoneModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Android_API.Models"> <CreateDate>2025-11-09T14:12:04.2213884+07:00</CreateDate> <HHID>sample string 2</HHID> <ImageData>sample string 8</ImageData> <ImageName>sample string 7</ImageName> <JobNo>sample string 3</JobNo> <JobStatus>sample string 5</JobStatus> <Lat>1</Lat> <Lng>1</Lng> <MilestoneID>sample string 4</MilestoneID> <No>1</No> <RefCode>sample string 6</RefCode> </UpdateMilestoneModel>
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>