Validate Session
Validate a user’s active session and return if it’s OK or the user has been logged out and will now need to re-login.
Resource Information
This service uses the tomcat application on port 8080 by default. To see a list of default ports click here
The context for this API is /studio
, please prefix the API URLs with this context.
HTTP Verb
|
GET
|
URL
|
/api/1/services/api/1/security/validate-session.json |
Response Formats
|
JSON |
Required Role
|
Self
|
Parameters
None.
Example
GET .../api/1/services/api/1/security/validate-session.json
Response
Status
|
Location
|
Response Body
|
---|---|---|
200
|
{ "message" : "OK", "active" : true, "user" : { ... } } |
|
200
|
{ "message" : null, "active" : false, "user" : null } |
|
500
|
{ "message" : "Internal server error" } |