POST api/LoginV2/StarterLogin

Request Information

URI Parameters

None.

Body Parameters

StarterSendLogin
NameDescriptionTypeAdditional information
APIKey

string

None.

DeviceID

string

None.

FBToken

string

None.

StarterIDNumber

string

None.

Password

string

None.

WhatZone

string

None.

Request Formats

application/json, text/json

Sample:
{
  "APIKey": "sample string 1",
  "DeviceID": "sample string 2",
  "FBToken": "sample string 3",
  "StarterIDNumber": "sample string 4",
  "Password": "sample string 5",
  "WhatZone": "sample string 6"
}

application/xml, text/xml

Sample:
<Login.StarterSendLogin xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ProCADMobileService.Models">
  <APIKey>sample string 1</APIKey>
  <DeviceID>sample string 2</DeviceID>
  <FBToken>sample string 3</FBToken>
  <Password>sample string 5</Password>
  <StarterIDNumber>sample string 4</StarterIDNumber>
  <WhatZone>sample string 6</WhatZone>
</Login.StarterSendLogin>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

StarterLoginReturnData
NameDescriptionTypeAdditional information
status

boolean

None.

message

string

None.

StarterName

string

None.

DriverNumber

string

None.

DriverID

integer

None.

MobileTIAStarter

integer

None.

StarterLogID

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "status": true,
  "message": "sample string 2",
  "StarterName": "sample string 3",
  "DriverNumber": "sample string 4",
  "DriverID": 5,
  "MobileTIAStarter": 6,
  "StarterLogID": 7
}

application/xml, text/xml

Sample:
<Login.StarterLoginReturnData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ProCADMobileService.Models">
  <DriverID>5</DriverID>
  <DriverNumber>sample string 4</DriverNumber>
  <MobileTIAStarter>6</MobileTIAStarter>
  <StarterLogID>7</StarterLogID>
  <StarterName>sample string 3</StarterName>
  <message>sample string 2</message>
  <status>true</status>
</Login.StarterLoginReturnData>