POST api/Values/MAddUserTravellingLog
Request Information
URI Parameters
None.
Body Parameters
Collection of UserTravellingLogDomain| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| UserID | integer |
None. |
|
| Timestamp | date |
None. |
|
| Latitude | decimal number |
None. |
|
| Longitude | decimal number |
None. |
|
| Distance | decimal number |
None. |
|
| MeetingID | integer |
None. |
|
| Accuracy | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"UserID": 2,
"Timestamp": "2026-07-30T14:51:57.1734319+05:00",
"Latitude": 4.1,
"Longitude": 5.1,
"Distance": 6.1,
"MeetingID": 7,
"Accuracy": 8.1
},
{
"ID": 1,
"UserID": 2,
"Timestamp": "2026-07-30T14:51:57.1734319+05:00",
"Latitude": 4.1,
"Longitude": 5.1,
"Distance": 6.1,
"MeetingID": 7,
"Accuracy": 8.1
}
]
application/xml, text/xml
Sample:
<ArrayOfUserTravellingLogDomain xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RestAPITest.Models">
<UserTravellingLogDomain>
<Accuracy>8.1</Accuracy>
<Distance>6.1</Distance>
<ID>1</ID>
<Latitude>4.1</Latitude>
<Longitude>5.1</Longitude>
<MeetingID>7</MeetingID>
<Timestamp>2026-07-30T14:51:57.1734319+05:00</Timestamp>
<UserID>2</UserID>
</UserTravellingLogDomain>
<UserTravellingLogDomain>
<Accuracy>8.1</Accuracy>
<Distance>6.1</Distance>
<ID>1</ID>
<Latitude>4.1</Latitude>
<Longitude>5.1</Longitude>
<MeetingID>7</MeetingID>
<Timestamp>2026-07-30T14:51:57.1734319+05:00</Timestamp>
<UserID>2</UserID>
</UserTravellingLogDomain>
</ArrayOfUserTravellingLogDomain>
application/x-www-form-urlencoded
Sample:
Sample not available.
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. |