Logout¶
Logout the currentlyl logged in user.
await illumass.auth.logout();
cURL
curl -X POST \
-H 'Authorization: Bearer <jwt>' \
https://api.illumass.com/v4/logout
WebSocket
{
"controller": "auth",
"action": "logout",
"jwt": "<jwt>",
}
Response
{
"requestId": "6494cfa5-eabe-4726-abae-970d64473bb1",
"status": 200,
"error": null,
"controller": "auth",
"action": "logout",
"collection": null,
"index": null,
"volatile": null,
"result": {
"acknowledged": true
}
}