GET api/mobile/driversupportcontact?driverId={driverId}&token={token}

Get support telephone numbers for mobile applications

Request Information

URI Parameters

NameDescriptionTypeAdditional information
driverId

The ID returned from a successful login

unsigned integer

Required

token

The authentication token returned from a successful login

string

Required

Body Parameters

None.

Response Information

Resource Description

A list of GroupResponses

DriverSupportContactResponse
NameDescriptionTypeAdditional information
Result

Indicates if the request was successful

boolean

None.

TelephoneNumber

The telephone number if the result was successful

string

None.

ErrorCode

Identifies any possible errors

WebserviceErrorCode

None.

Response Formats

application/json, text/json

Sample:
{
  "Result": true,
  "TelephoneNumber": "sample string 2",
  "ErrorCode": 0
}

application/xml, text/xml

Sample:
<DriverSupportContactResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Result>true</Result>
  <TelephoneNumber>sample string 2</TelephoneNumber>
  <ErrorCode>None</ErrorCode>
</DriverSupportContactResponse>