POST api/Login/SamlResponseUser

Request Information

URI Parameters

None.

Body Parameters

SAMLRequest
NameDescriptionTypeAdditional information
RelayState

string

None.

ApplicationId

string

None.

IsPreLogin

boolean

None.

ApplicationName

string

None.

SessionNum

integer

None.

SessionPassword

Collection of byte

None.

ApplicationCode

string

None.

StagesURL

string

None.

Request Formats

application/json, text/json

Sample:
{
  "RelayState": "sample string 1",
  "ApplicationId": "sample string 2",
  "IsPreLogin": true,
  "ApplicationName": "sample string 3",
  "SessionNum": 4,
  "SessionPassword": "QEA=",
  "ApplicationCode": "sample string 5",
  "StagesURL": "sample string 6"
}

application/xml, text/xml

Sample:
<SAMLRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RapidAPI.Models">
  <StagesURL>sample string 6</StagesURL>
  <ApplicationCode>sample string 5</ApplicationCode>
  <SessionNum>4</SessionNum>
  <SessionPassword>QEA=</SessionPassword>
  <ApplicationId>sample string 2</ApplicationId>
  <ApplicationName>sample string 3</ApplicationName>
  <IsPreLogin>true</IsPreLogin>
  <RelayState>sample string 1</RelayState>
</SAMLRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

SamlResponseUserResult
NameDescriptionTypeAdditional information
SamlUser

SamlResponseUser

None.

Success

boolean

None.

UserErrorMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "SamlUser": {
    "Username": "sample string 1"
  },
  "Success": true,
  "UserErrorMessage": "sample string 2"
}

application/xml, text/xml

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