Click or drag to resize

ServiceRouterGetSSOEnabled Method

Returns a GetSSOEnabledOut result model to determine if a customer is SSO enabled.

Namespace: AppOne.Services.V2
Assembly: AppOne.Web.Service (in AppOne.Web.Service.dll) Version: 1.0.141
Syntax
public GetSSOEnabledOut GetSSOEnabled(
	GetSSOEnabledIn input
)

Parameters

input  GetSSOEnabledIn
A valid GetSSOEnabledIn object

Return Value

GetSSOEnabledOut
Returns true if the customer alias has been enabled for SSO connections
Remarks
Determines if single sign-on is enable for the specific customer alias.

For a complete rundown on SSO please see the WSAccessControl Class

Example
JSON Request
{
    "CustomerAlias":"TestAccount",
    "SSOSharedKey":"5yyy1be8-ad20-4c52-406a-f6c38fd9d22f"
}
JSON Response
{
    "Report": {
        "APIVersion": "2.0",
        "ProcessTime": "0.0247134",
        "RequestTime": "/Date(1492809062777-0700)/",
        "ResponseTime": "/Date(1492809062802-0700)/",
        "Results": 1
    },
    "Result": true
}
See Also