My Details

Get current signed-in user details

This API Endpoint will return the current user's details. This endpoint requires the user to be signed in and have a valid refreshJwt. The refreshJwt is then used as part of the Authorization Bearer to perform this task.

Endpoint Authentication

Use authorization bearer header with the following format:

Authorization: Bearer <Project ID:Refresh JWT>

SecurityAuthProjectIdJwt
Responses
200

OK

get/v1/auth/me
Request samples
Response samples
application/json
{
  • "loginIds": [
    ],
  • "userId": "string",
  • "name": "string",
  • "email": "string",
  • "phone": "string",
  • "verifiedEmail": true,
  • "verifiedPhone": true,
  • "roleNames": [
    ],
  • "userTenants": [
    ],
  • "status": "string",
  • "externalIds": [
    ],
  • "picture": "string",
  • "test": false,
  • "customAttributes": { },
  • "createdTime": 0,
  • "TOTP": false,
  • "SAML": false,
  • "OAuth": {
    },
  • "webauthn": true,
  • "password": true,
  • "ssoAppIds": [
    ],
  • "givenName": "string",
  • "middleName": "string",
  • "familyName": "string",
  • "editable": true
}