POST api/userinfo/savelocationlog

Request Information

URI Parameters

None.

Body Parameters

LocationLog
NameDescriptionTypeAdditional information
Custid

string

None.

Latitude

string

None.

Longitude

string

None.

LogType

string

None.

SaveDate

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Custid": "sample string 1",
  "Latitude": "sample string 2",
  "Longitude": "sample string 3",
  "LogType": "sample string 4",
  "SaveDate": "sample string 5"
}

application/xml, text/xml

Sample:
<LocationLog xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DaveLabsAPI.Controllers">
  <Custid>sample string 1</Custid>
  <Latitude>sample string 2</Latitude>
  <LogType>sample string 4</LogType>
  <Longitude>sample string 3</Longitude>
  <SaveDate>sample string 5</SaveDate>
</LocationLog>

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 'LocationLog'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.