The GET /users/{userId}
endpoint returns the user matching the user ID provided.
Panel | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||
|
Parameters
The endpoint accepts the following path parameter:
userId
Type | Required | Example |
---|---|---|
String | True | 8e22b1fe-d2ea-403d-8c03-50eb21188e79 |
The user ID of the required user.
Responses
Responses contain the requested user object.
Successful response
Successful requests return a 200 Success
code and the requested user.
Example response
Code Block | ||||
---|---|---|---|---|
| ||||
{
"username": "wallboard",
"name": "Wallboard",
"email": "wallboard@vonage.com",
"userId": "8e22b1fe-d2ea-403d-8c03-50eb21188e79",
"lastLoginTime": "2021-08-26T07:37:55.465Z",
"active": true,
"ssoExternalId": "exampleSso",
"userAccountConfiguration": {
"role": "Wallboard",
"actAsAgent": true,
"agentConfiguration": {
"agentDisplayId": "123",
"webrtc": true,
"enforcedDispositionCodes": false,
"transcribeCalls": true,
"screenRecording": false,
"callParking": true,
"salesCadence": false,
"outboundAutoanswer": true,
"inboundAutoanswer": true,
"outboundWrapUp": 100,
"backToReadyAfterNoAnswer": 100,
"backToReadyAfterLineBusy": 90,
"backToReadyAfterInvalidNumber": 80,
"backToReadyAfterNetworkIssue": 5,
"callRatingFrequency": 56,
"location": "GB",
"telephonyAddress": {
"telephoneAddress": "800100",
"telephonyExtension": "44",
"outboundTelephonyRegion": "ab6fd03e-de5a-41fb-9ad8-0e9fcb39f827",
"nationalDisplay": true,
"virtualLocation": "PL"
},
"capacity": {
"isAgentLevel": false,
"live": 60,
"nonlive": 15,
"semilive": 75
},
"associatedUsers": [
{
"username": "supervisor_vbc",
"applicationType": "VBC"
}
]
}
}
} |
where:
Insert excerpt _ExcerptAPIUserObject _ExcerptAPIUserObject nopanel true