POST api/Login/LoginIdentify

Request Information

URI Parameters

None.

Body Parameters

LoginIdentifyRequest
NameDescriptionTypeAdditional information
Username

string

None.

StagesURL

string

None.

Request Formats

application/json, text/json

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

application/xml, text/xml

Sample:
<LoginIdentifyRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RapidAPI.Models">
  <StagesURL>sample string 2</StagesURL>
  <Username>sample string 1</Username>
</LoginIdentifyRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

LoginIdentifyResult
NameDescriptionTypeAdditional information
LoginProcessId

Collection of byte

None.

HasEmail

boolean

None.

HasSms

boolean

None.

Success

boolean

None.

UserErrorMessage

string

None.

ErrorTypeNum

integer

None.

SqlConnectionLost

boolean

None.

ClientVersion

string

None.

Response Formats

application/json, text/json

Sample:
{
  "LoginProcessId": "QEA=",
  "HasEmail": true,
  "HasSms": true,
  "Success": true,
  "UserErrorMessage": "sample string 4",
  "ErrorTypeNum": 5,
  "SqlConnectionLost": true,
  "ClientVersion": "sample string 7"
}

application/xml, text/xml

Sample:
<LoginIdentifyResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Stages">
  <ClientVersion>sample string 7</ClientVersion>
  <ErrorTypeNum>5</ErrorTypeNum>
  <SqlConnectionLost>true</SqlConnectionLost>
  <Success>true</Success>
  <UserErrorMessage>sample string 4</UserErrorMessage>
  <HasEmail>true</HasEmail>
  <HasSms>true</HasSms>
  <LoginProcessId>QEA=</LoginProcessId>
</LoginIdentifyResult>