Sessions
Authorizations
AuthorizationstringRequired
Provide the token that is returned upon login
Responses
200
OK
application/json
get
/me/sessionsGET /me/sessions HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200
OK
[
{
"userId": "123e4567-e89b-12d3-a456-426614174000",
"tokenId": "123e4567-e89b-12d3-a456-426614174000",
"ip": "text",
"userAgent": "text",
"country": "text",
"region": "text",
"city": "text",
"createdAt": "2025-11-27T05:23:02.069Z",
"updatedAt": "2025-11-27T05:23:02.069Z"
}
]Authorizations
AuthorizationstringRequired
Provide the token that is returned upon login
Path parameters
tokenIdstringRequired
Responses
200
OK
application/json
404
Resource not found
application/json
get
/me/sessions/{tokenId}GET /me/sessions/{tokenId} HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"userId": "123e4567-e89b-12d3-a456-426614174000",
"tokenId": "123e4567-e89b-12d3-a456-426614174000",
"ip": "text",
"userAgent": "text",
"country": "text",
"region": "text",
"city": "text",
"createdAt": "2025-11-27T05:23:02.069Z",
"updatedAt": "2025-11-27T05:23:02.069Z"
}Authorizations
AuthorizationstringRequired
Provide the token that is returned upon login
Path parameters
tokenIdstringRequired
Responses
204
Deleted
404
Resource not found
application/json
delete
/me/sessions/{tokenId}DELETE /me/sessions/{tokenId} HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No content
Last updated
Was this helpful?

