cURL
curl --request GET \ --url https://api.quiva.ai/accounts/session-tokens \ --header 'Authorization: Bearer <token>'
{ "data": { "auth": [ { "account_id": "<string>", "user_id": "<string>", "account": "<string>", "role": "<string>", "expiry": 123, "ip": "<string>", "agent": "<string>", "platform": "<string>", "token": "<string>", "refresh_token": "<string>", "is_suspended": true, "location": "<string>", "email": "<string>" } ], "refresh": [ { "account_id": "<string>", "user_id": "<string>", "account": "<string>", "email": "[email protected]", "role": "<string>", "expiry": 123, "token": "<string>" } ] } }
Retrieves all active session tokens for the current user
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Session tokens retrieved successfully
Show child attributes