POST api/Values/ViewLatlan

Request Information

URI Parameters

None.

Body Parameters

coordinate
NameDescriptionTypeAdditional information
Id

integer

None.

TrackId

integer

None.

EmpId

integer

None.

EmpName

string

None.

latitude

decimal number

None.

langtitude

decimal number

None.

address

string

None.

datetime

string

None.

timedate

string

None.

updateddate

date

None.

distance

decimal number

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "TrackId": 1,
  "EmpId": 2,
  "EmpName": "sample string 3",
  "latitude": 1.1,
  "langtitude": 1.1,
  "address": "sample string 4",
  "datetime": "sample string 5",
  "timedate": "sample string 6",
  "updateddate": "2026-05-13T16:13:30.2332048+05:30",
  "distance": 1.1
}

application/xml, text/xml

Sample:
<coordinate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Delphitvs_catalog_json">
  <EmpId>2</EmpId>
  <EmpName>sample string 3</EmpName>
  <Id>1</Id>
  <TrackId>1</TrackId>
  <address>sample string 4</address>
  <datetime>sample string 5</datetime>
  <distance>1.1</distance>
  <langtitude>1.1</langtitude>
  <latitude>1.1</latitude>
  <timedate>sample string 6</timedate>
  <updateddate>2026-05-13T16:13:30.2332048+05:30</updateddate>
</coordinate>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'coordinate'.

Response Information

Resource Description

Output
NameDescriptionTypeAdditional information
result

string

None.

msg

string

None.

data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "result": "sample string 1",
  "msg": "sample string 2",
  "data": {}
}

application/xml, text/xml

Sample:
<Output xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Delphitvs_catalog_json">
  <data />
  <msg>sample string 2</msg>
  <result>sample string 1</result>
</Output>