Web API: Signout: Difference between revisions

From QPR ProcessAnalyzer Wiki
Jump to navigation Jump to search
(Created page with "This operation signs out the user from QPR ProcessAnalyzer. There are no parameters, and no data is retured by the operation. HTTP method is '''POST'''. Example: <pre> http:/...")
 
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
This operation signs out the user from QPR ProcessAnalyzer. There are no parameters, and no data is retured by the operation. HTTP method is '''POST'''.
The Signout operation signs out (logs out) the user from QPR ProcessAnalyzer and ends the user session. There are no parameters, and no data is returned by the operation (http status code is 204). Note that the signout gives this response even if the session has already been expired. Also the signout operation does not initiate a possible expired license renewal in case the license has expired.
 
HTTP request header '''Authorization''' with value '''Bearer <access token>''' needs to be in place to identify the session to be signed out.  


Example:
<pre>
<pre>
http://SERVER/qprpa/api/signout
Url: POST qprpa/api/signout
</pre>
</pre>
[[Category: QPR ProcessAnalyzer]]

Latest revision as of 10:00, 16 February 2022

The Signout operation signs out (logs out) the user from QPR ProcessAnalyzer and ends the user session. There are no parameters, and no data is returned by the operation (http status code is 204). Note that the signout gives this response even if the session has already been expired. Also the signout operation does not initiate a possible expired license renewal in case the license has expired.

HTTP request header Authorization with value Bearer <access token> needs to be in place to identify the session to be signed out.

Url: POST qprpa/api/signout