cURL
curl --request GET \ --url https://api.example.com/user/my/sessions \ --header 'Authorization: Bearer <token>'
[ { "session_id": 123, "user_id": 123, "logged_in_at": "2023-11-07T05:31:56Z", "is_current": true, "device_name": "<string>", "ip_address": "<string>", "location": "<string>", "user_agent": "<string>", "logged_out_at": "2023-11-07T05:31:56Z" } ]
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful Response