POST api/Entrust/Authenticate

Request Information

URI Parameters

None.

Body Parameters

EntrustObj
NameDescriptionTypeAdditional information
Username

string

None.

Token

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Username": "sample string 1",
  "Token": "sample string 2"
}

application/xml, text/xml

Sample:
<EntrustObj xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tesla.FbnIntegrator.CustomObject">
  <Token>sample string 2</Token>
  <Username>sample string 1</Username>
</EntrustObj>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ADResponse
NameDescriptionTypeAdditional information
Success

boolean

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Message": "sample string 2"
}

application/xml, text/xml

Sample:
<ADResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tesla.FbnIntegrator.CustomObject">
  <Message>sample string 2</Message>
  <Success>true</Success>
</ADResponse>