Get user by authenticator and username

Identical semantics to findByUsername, except this is an internal API which does not require USER_READ. Only usable by other services, which should independently verify relevant access privileges.

Request
Security:
vc-security
path Parameters
username
required
string
authenticator
required
string
Responses
200

OK

400

Bad Request. The request parameters (or body) were malformed or invalid. Fix the issues with the request and try again.

401

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

403

Forbidden. You are not permitted to access the requested resource.

404

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

get/user-service/internal/user/{authenticator}/{username}
Request samples
curl -i -X GET \
  'http://localhost:8081/user-service/internal/user/{authenticator}/{username}' \
  -H 'x-auth-token: YOUR_API_KEY_HERE'
Response samples
application/json
{
  • "userKey": {
    },
  • "password": "string",
  • "orgId": "string",
  • "email": "string",
  • "enabled": true,
  • "locked": true,
  • "forcePasswordChange": false,
  • "expired": true,
  • "credentialsExpired": true,
  • "usingMfa": true,
  • "mfaSecret": "string",
  • "sharedSecret": "string",
  • "notes": "string",
  • "createdInstant": "2019-08-24T14:15:22Z",
  • "lastUpdatedInstant": "2019-08-24T14:15:22Z",
  • "createdBy": "string",
  • "lastUpdatedBy": "string",
  • "lastName": "string",
  • "firstName": "string",
  • "primaryPhone": "string",
  • "primaryPhoneCountryCode": "string",
  • "primaryPhoneExtension": "string",
  • "lastSuccessfulAuthAttempt": "2019-08-24T14:15:22Z",
  • "lastFailedAuthAttempt": "2019-08-24T14:15:22Z",
  • "timeZone": "string",
  • "locale": "string",
  • "roles": [ ],
  • "privileges": [ ],
  • "allRoles": [
    ],
  • "allPrivileges": [
    ],
  • "id": "string",
  • "isSsoUser": false
}