{ "opencollection": "1.0.0", "info": { "name": "Auth0 Authentication actions sessions API", "version": "1.0.0" }, "items": [ { "info": { "name": "sessions", "type": "folder" }, "items": [ { "info": { "name": "Get Session", "type": "http" }, "http": { "method": "GET", "url": "{auth0_domain}/sessions/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "ID of session to retrieve" } ] }, "docs": "Retrieve session information." }, { "info": { "name": "Update Session", "type": "http" }, "http": { "method": "PATCH", "url": "{auth0_domain}/sessions/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "ID of the session to update." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update session information." }, { "info": { "name": "Delete Session", "type": "http" }, "http": { "method": "DELETE", "url": "{auth0_domain}/sessions/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "ID of the session to delete." } ] }, "docs": "Delete a session by ID." }, { "info": { "name": "Revokes a Session", "type": "http" }, "http": { "method": "POST", "url": "{auth0_domain}/sessions/:id/revoke", "params": [ { "name": "id", "value": "", "type": "path", "description": "ID of the session to revoke." } ] }, "docs": "Revokes a session by ID and all associated refresh tokens." } ] } ], "bundled": true }