POST api/Common/SetMylerCurrentLocation

Request Information

URI Parameters

None.

Body Parameters

MylerLocationDTO
NameDescriptionTypeAdditional information
MylerId

integer

None.

Latitude

decimal number

None.

Longitude

decimal number

None.

CreatedDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "MylerId": 1,
  "Latitude": 2.1,
  "Longitude": 3.1,
  "CreatedDate": "2024-07-04T23:19:13.9491477+03:00"
}

application/xml, text/xml

Sample:
<MylerLocationDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MYLERZ.Base.DTO.MobileDTO">
  <CreatedDate>2024-07-04T23:19:13.9491477+03:00</CreatedDate>
  <Latitude>2.1</Latitude>
  <Longitude>3.1</Longitude>
  <MylerId>1</MylerId>
</MylerLocationDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

DescriptiveResponseOfBoolean
NameDescriptionTypeAdditional information
Value

boolean

None.

CoreValue

string

None.

IsErrorState

boolean

None.

ErrorDescription

string

None.

ErrorMetadata

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Value": true,
  "CoreValue": "sample string 2",
  "IsErrorState": true,
  "ErrorDescription": "sample string 4",
  "ErrorMetadata": {}
}

application/xml, text/xml

Sample:
<DescriptiveResponseOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MYLERZ.Base.Entities">
  <CoreValue>sample string 2</CoreValue>
  <ErrorDescription>sample string 4</ErrorDescription>
  <ErrorMetadata />
  <IsErrorState>true</IsErrorState>
  <Value>true</Value>
</DescriptiveResponseOfboolean>