POST api/PAAI/LoginViaPAAI

Documentation for 'LoginViaPAAI'.

Request Information

Parameters

NameDescriptionAdditional information
modelPAAI
Documentation for 'modelPAAI'.

Define this parameter in the request body.

Request body formats

application/json, text/json

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

application/xml, text/xml

Sample:
<ReqLoginModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Username>sample string 1</Username>
  <Password>sample string 2</Password>
</ReqLoginModel>

Response Information

Response body formats

application/json, text/json

Sample:
{
  "UserID": "270c909e-97c9-42c1-9487-84501abb7982",
  "Message": "sample string 2",
  "IsSuccess": true
}

application/xml, text/xml

Sample:
<ResLoginModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <UserID>270c909e-97c9-42c1-9487-84501abb7982</UserID>
  <Message>sample string 2</Message>
  <IsSuccess>true</IsSuccess>
</ResLoginModel>