GET
/auth/me
curl \
--request GET 'http://api.example.com/auth/me' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"clientId": "string",
"expiresAt": 42
}
curl \
--request GET 'http://api.example.com/auth/me' \
--header "Authorization: Bearer $ACCESS_TOKEN"
{
"clientId": "string",
"expiresAt": 42
}