POST api/LocLog/{Jid}/{IsStartPic}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Jid | string |
None. |
|
| IsStartPic | string |
None. |
Body Parameters
LocTrackLog| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| UID | string |
None. |
|
| LogDate | date |
None. |
|
| LogTime | time interval |
None. |
|
| Lat | decimal number |
None. |
|
| Lng | decimal number |
None. |
|
| Altitude | decimal number |
None. |
|
| Course | decimal number |
None. |
|
| Speed | decimal number |
None. |
|
| Address | string |
None. |
|
| Distance | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"UID": "sample string 2",
"LogDate": "2025-12-10T23:51:26.8083643+05:30",
"LogTime": "00:00:00.1234567",
"Lat": 5.0,
"Lng": 6.0,
"Altitude": 1.0,
"Course": 1.0,
"Speed": 1.0,
"Address": "sample string 7",
"Distance": 1.0
}
application/xml, text/xml
Sample:
<LocTrackLog xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DAL"> <Address>sample string 7</Address> <Altitude>1</Altitude> <Course>1</Course> <Distance>1</Distance> <ID>1</ID> <Lat>5</Lat> <Lng>6</Lng> <LogDate>2025-12-10T23:51:26.8083643+05:30</LogDate> <LogTime>PT0.1234567S</LogTime> <Speed>1</Speed> <UID>sample string 2</UID> </LocTrackLog>
multipart/form-data
Sample:
<LocTrackLog xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DAL"><Address>sample string 7</Address><Altitude>1</Altitude><Course>1</Course><Distance>1</Distance><ID>1</ID><Lat>5</Lat><Lng>6</Lng><LogDate>2025-12-10T23:51:26.8083643+05:30</LogDate><LogTime>PT0.1234567S</LogTime><Speed>1</Speed><UID>sample string 2</UID></LocTrackLog>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |