POST api/Account/UpdateUserLocation?masterCustomerId={masterCustomerId}&applicationUserId={applicationUserId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
masterCustomerId

integer

Required

applicationUserId

string

Required

Body Parameters

AppLocationVM
NameDescriptionTypeAdditional information
Latitude

string

None.

Longitude

string

None.

Speed

string

None.

Altitude

string

None.

Heading

string

None.

Timestamp

decimal number

None.

Request Formats

application/json, text/json

Sample:
{
  "Latitude": "sample string 1",
  "Longitude": "sample string 2",
  "Speed": "sample string 3",
  "Altitude": "sample string 4",
  "Heading": "sample string 5",
  "Timestamp": 6.1
}

application/xml, text/xml

Sample:
<AppLocationVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebFletchCRM.Business.Models">
  <Altitude>sample string 4</Altitude>
  <Heading>sample string 5</Heading>
  <Latitude>sample string 1</Latitude>
  <Longitude>sample string 2</Longitude>
  <Speed>sample string 3</Speed>
  <Timestamp>6.1</Timestamp>
</AppLocationVM>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.