GET alive?authType={authType}
Asks if the server is alive, and optionally if the specified authentication server is alive.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
authType |
The authentication server to query. |
string |
None. |
Body Parameters
None.
Response Information
Resource Description
A response indicating that the server is responsive, and optionally if the authentication server is responsive.
AliveResponseName | Description | Type | Additional information |
---|---|---|---|
AuthServerAlive | boolean |
None. |
|
XssAlive | boolean |
None. |
|
Success | boolean |
None. |
|
Error | string |
None. |
Response Formats
application/xml, text/xml
Sample:
<AliveResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <Error>sample string 4</Error> <Success>true</Success> <AuthServerAlive>true</AuthServerAlive> <XssAlive>true</XssAlive> </AliveResponse>
application/json, text/json
Sample:
{ "AuthServerAlive": true, "XssAlive": true, "Success": true, "Error": "sample string 4" }