Aurion Docs
Api

Get Me

Get the current authenticated user's information. Returns user info from the JWT claims plus any additional data from DB.

GET
/api/v1/auth/me

Get the current authenticated user's information.

Returns user info from the JWT claims plus any additional data from DB.

AuthorizationBearer <token>

In: header

Response Body

application/json

curl -X GET "https://loading/api/v1/auth/me"
{
  "email": "string",
  "full_name": "string",
  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  "is_azure_bound": true,
  "last_login_at": "2019-08-24T14:15:22Z",
  "role": "super_admin"
}