Logging out

From DreamFactory
Jump to: navigation, search
m (Changed note block from code to content and updated order of examples and their details)
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:
 
* DELETE api/v2/system/admin/session
 
* DELETE api/v2/system/admin/session

Revision as of 20:07, 22 June 2016

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

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
  • Session Token: abc.123.efg