POST api/Auth/LogInSSO
Login via SSO throws an HttpResponseException with the status code MethodNotAllow
Request Information
URI Parameters
None.
Body Parameters
SSOLoginModel| Name | Description | Type | Additional information |
|---|---|---|---|
| SecurityToken |
Valid security token provided by the third party SSO service |
string |
Required |
| CultureName |
Valid culture name |
string |
Required |
Request Formats
application/json, text/json
Sample:
{
"SecurityToken": "sample string 1",
"CultureName": "sample string 2"
}
application/xml, text/xml
Sample:
<SSOLoginModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RostarCASWebAPI.Models"> <CultureName>sample string 2</CultureName> <SecurityToken>sample string 1</SecurityToken> </SSOLoginModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.