GET api/care/login/SsoAuthentication?domainName={domainName}
Validates SSO authentication of the indicated user (in authorization header) for the indicated domain
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| domainName | string |
Required |
Body Parameters
None.
Response Information
Resource Description
SsoEmployeeAuthenticationResponseForDataCenter
SsoEmployeeAuthenticationResponseForDataCenter| Name | Description | Type | Additional information |
|---|---|---|---|
| EmailAddress | string |
None. |
|
| IsPinSet | boolean |
None. |
|
| PinHash | string |
None. |
|
| EmployeeId | integer |
None. |
|
| ServiceUrl | string |
None. |
|
| UserId | integer |
None. |
|
| SecurityToken | string |
None. |
|
| TokenExpirationUtcTime | date |
None. |
|
| ErrorMessage | string |
None. |
|
| AuthenticationStatus | AuthenticationStatus |
None. |
Response Formats
application/json, text/json
Sample:
{
"EmailAddress": "sample string 1",
"IsPinSet": true,
"PinHash": "sample string 2",
"EmployeeId": 1,
"ServiceUrl": "sample string 3",
"UserId": 1,
"SecurityToken": "sample string 4",
"TokenExpirationUtcTime": "2026-05-03T10:35:46.783864-04:00",
"ErrorMessage": "sample string 5",
"AuthenticationStatus": 0
}
application/xml, text/xml
Sample:
<SsoEmployeeAuthenticationResponseForDataCenter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CWI.Mobile.Domain.ResponseModels"> <AuthenticationStatus>NotSet</AuthenticationStatus> <ErrorMessage>sample string 5</ErrorMessage> <SecurityToken>sample string 4</SecurityToken> <TokenExpirationUtcTime>2026-05-03T10:35:46.783864-04:00</TokenExpirationUtcTime> <UserId>1</UserId> <ServiceUrl>sample string 3</ServiceUrl> <EmployeeId>1</EmployeeId> <EmailAddress>sample string 1</EmailAddress> <IsPinSet>true</IsPinSet> <PinHash>sample string 2</PinHash> </SsoEmployeeAuthenticationResponseForDataCenter>