Get user details for the user on the session

Request
Security:
vc-security
Responses
200

OK

401

Unauthorized request. Make sure token was included and is valid and try again.

404

Not Found. The specified resource (or resource referred to by id) was not found

get/user-service/v1/user-details
Request samples
curl -i -X GET \
  http://localhost:8081/user-service/v1/user-details \
  -H 'x-auth-token: YOUR_API_KEY_HERE'
Response samples
application/json
{
  • "userKey": {
    },
  • "firstName": "string",
  • "lastName": "string",
  • "orgId": "string",
  • "email": "string",
  • "primaryPhone": "string",
  • "primaryPhoneCountryCode": "string",
  • "primaryPhoneExtension": "string",
  • "secondaryPhone": "string",
  • "timeZone": "string",
  • "locale": "string"
}