curl --location --request POST '/api/auth/admin/list-user-sessions' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"userId": "string"
}'
{
"sessions": [
{
"id": "string",
"expiresAt": "string",
"token": "string",
"createdAt": "string",
"updatedAt": "string",
"ipAddress": "string",
"userAgent": "string",
"userId": "string",
"impersonatedBy": "string",
"activeOrganizationId": "string"
}
]
}