Back
AuthorizedAuthorizedDocs
POST

Logout

Terminates an active session. Call this when the user closes your application or explicitly logs out.

POST/api/v1/logout

Request Body

api_keyrequired
string
Your application API key
session_tokenrequired
string
Session token to terminate

Python

python
requests.post("https://authorized.lol/api/v1/logout", json={
    "api_key": api_key,
    "session_token": session_token
})