Check session validity

Command to check the validity of a session.

POST /session_is_valid.fcgi

Parameters

  • This call has no parameters.

Response

  • session (string): Code of the session started.

Request example

$.ajax({
  url: "/session_is_valid.fcgi?session=" + session,
  type: 'POST',
  contentType: 'application/json'
});

Response example

{
    "session_is_valid": true
}