Sessions
Log out everywhere
POST
/api/v1/auth/logout-allRevokes every session on the account, including the current one.
Requires Authorization
Session
Request
curl --request POST \
--url https://api.swiftgoma.com/api/v1/auth/logout-all \
--header 'Authorization: Bearer <access_token>'200Example response
{
"success": true,
"data": {
"revokedCount": 3
}
}