POST api/all/getgpsv3info

Request Information

URI Parameters

None.

Body Parameters

JsonLoginGpsV3InfoI
NameDescriptionTypeAdditional information
System

string

None.

MapToken

globally unique identifier

None.

Username

string

None.

Password

string

None.

Request Formats

application/json, text/json

Sample:
{
  "System": "sample string 1",
  "MapToken": "e784e88c-5f46-4c20-958c-1fc24565aec6",
  "Username": "sample string 3",
  "Password": "sample string 4"
}

application/xml, text/xml

Sample:
<JsonLoginGpsV3InfoI xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Model">
  <Password xmlns="http://schemas.datacontract.org/2004/07/Entities.Common">sample string 4</Password>
  <Username xmlns="http://schemas.datacontract.org/2004/07/Entities.Common">sample string 3</Username>
  <MapToken>e784e88c-5f46-4c20-958c-1fc24565aec6</MapToken>
  <System>sample string 1</System>
</JsonLoginGpsV3InfoI>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

JsonLoginGpsV3InfoO
NameDescriptionTypeAdditional information
Data

string

None.

ProcessErrorType

integer

None.

ProcessErrorDescription

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Data": "sample string 1",
  "ProcessErrorType": 2,
  "ProcessErrorDescription": "sample string 3"
}

application/xml, text/xml

Sample:
<JsonLoginGpsV3InfoO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Model">
  <ProcessErrorDescription xmlns="http://schemas.datacontract.org/2004/07/Entities.Common">sample string 3</ProcessErrorDescription>
  <ProcessErrorType xmlns="http://schemas.datacontract.org/2004/07/Entities.Common">2</ProcessErrorType>
  <Data>sample string 1</Data>
</JsonLoginGpsV3InfoO>