curl --request DELETE \
--url https://{defaultHost}/v1/auth/{app_id}/sessions/{id} \
--header 'X-Authorization: <api-key>'{
"message": "ok",
"verified": true
}Revoke a specific session by ID for the authenticated user. This will invalidate the session and require re-authentication. Requires a valid access token.
curl --request DELETE \
--url https://{defaultHost}/v1/auth/{app_id}/sessions/{id} \
--header 'X-Authorization: <api-key>'{
"message": "ok",
"verified": true
}Was this page helpful?