Logging out
From DreamFactory
(Created page with "### 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...") |
(→Logging out as a User (non-admin)) |
||
(7 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
− | + | For these examples, assume your current session token is abc.123.efg. | |
− | + | === Logging out as an Admin === | |
− | + | ||
− | + | ||
− | + | The Admin logout API endpoint is api/v2/system/admin/session | |
− | + | Request URL: | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
+ | <pre>DELETE https://foo.com/api/v2/system/admin/session?session_token=abc.123.efg</pre> | ||
Note: Session token can also be supplied using X-DreamFactory-Session-Token request header. | Note: Session token can also be supplied using X-DreamFactory-Session-Token request header. | ||
− | + | === Logging out as a User (Non-Admin) === | |
− | + | The non-admin logout API endpoint is api/v2/user/session | |
− | + | Request URL: | |
− | <pre>DELETE https:// | + | <pre>DELETE https://foo.com/api/v2/user/session?session_token=abc.123.efg</pre> |
+ | |||
+ | Note: Session token can also be supplied using X-DreamFactory-Session-Token request header. |
Latest revision as of 20:39, 14 July 2016
For these examples, assume your current session token is abc.123.efg.
Logging out as an Admin
The Admin logout API endpoint is api/v2/system/admin/session
Request URL:
DELETE https://foo.com/api/v2/system/admin/session?session_token=abc.123.efg
Note: Session token can also be supplied using X-DreamFactory-Session-Token request header.
Logging out as a User (Non-Admin)
The non-admin logout API endpoint is api/v2/user/session
Request URL:
DELETE https://foo.com/api/v2/user/session?session_token=abc.123.efg
Note: Session token can also be supplied using X-DreamFactory-Session-Token request header.