POST Api/v1/Auth

Driver authentication endpoint, authenticates the given set of crednetials and returns a login token that can be used to authorize future requests.

Request Information

URI Parameters

None.

Body Parameters

AuthCredentials
NameDescriptionTypeAdditional information
CompanyCode

string

Required

Username

string

Required

Password

string

Required

Request Formats

application/json, text/json

Sample:
{
  "companyCode": "sample string 1",
  "username": "sample string 2",
  "password": "sample string 3"
}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json

Sample:

Sample not available.