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_keyrequiredstring
Your application API key
session_tokenrequiredstring
Session token to terminate
Python
python
requests.post("https://authorized.lol/api/v1/logout", json={
"api_key": api_key,
"session_token": session_token
})