GET
/v1/auth/me/history

Authorization

AuthorizationRequiredBearer <token>

In: header

curl -X GET "https://api.descope.com/v1/auth/me/history" \
  -H "Authorization: Bearer <token>"

OK

{
  "authHistory": [
    {
      "userId": "string",
      "loginTime": 0,
      "city": "string",
      "country": "string",
      "ip": "string"
    }
  ]
}

Was this helpful?