Logging out
From DreamFactory
Line 1: | Line 1: | ||
− | + | === Tutorial === | |
There are two APIs available for logging out of an authenticated session - | There are two APIs available for logging out of an authenticated session - | ||
Line 5: | Line 5: | ||
* DELETE api/v2/user/session | * DELETE api/v2/user/session | ||
− | + | === API Endpoints === | |
<pre>DELETE https://{url}/api/v2/system/admin/session?session_token={jwt_session_token_to_blacklist}</pre> | <pre>DELETE https://{url}/api/v2/system/admin/session?session_token={jwt_session_token_to_blacklist}</pre> | ||
Line 14: | Line 14: | ||
− | + | ''Note: Session token can also be supplied using X-DreamFactory-Session-Token request header.'' | |
− | + | === Example - Logging out === | |
* Session Token: abc.123.efg | * Session Token: abc.123.efg |
Revision as of 16:23, 3 February 2016
Tutorial
There are two APIs available for logging out of an authenticated session -
- DELETE api/v2/system/admin/session
- DELETE api/v2/user/session
API Endpoints
DELETE https://{url}/api/v2/system/admin/session?session_token={jwt_session_token_to_blacklist}
-- OR --
DELETE https://{url}/api/v2/user/session?session_token={jwt_session_token_to_blacklist}
Note: Session token can also be supplied using X-DreamFactory-Session-Token request header.
Example - Logging out
- Session Token: abc.123.efg
DELETE https://foo.com/api/v2/system/admin/session?session_token=abc.123.efg
-- OR --
DELETE https://foo.com/api/v2/user/session?session_token=abc.123.efg