Get the user
Get the user
Path Parameters
The ID of the user to get
- 200
- 400
- 401
- 403
- 404
- 500
The user
Schema
The unique id of the user
The initials of the user
The first name of the user
The last name of the user
The full name of the user
The email address of the user
phoneNumber object
The phone number of the user in E.164 format
The country code of the user phone number in ISO 3166-1 alpha-2 format
The country calling code of the user phone number
The phone number of the user without country calling code
Possible values: [AVAILABLE
, UNAVAILABLE
]
The availability of the user
avatarUrls object
Represents the URL for the small sized avatar of the user (250x250)
Represents the URL for the large sized avatar of the user (500x500)
preferences object
Possible values: [en
, nl
, es
, sv
]
Default value: nl
The language of the user in ISO 639-1 format
Possible values: [NL
, BE
, ES
, SE
]
Default value: NL
The default country code of the user in ISO 3166-1 alpha-2 format
The ID of the number that is preselected when making outbound calls
Possible values: [light
, dark
, system
]
The color mode of the user interface
webphone object
Possible values: [ringtone1
, ringtone2
, ringtone3
, ringtone4
, ringtone5
, ringtone6
]
The ringtone of the webphone
Whether or not the Users device should also ring on incoming Webphone calls
callWaiting object
Whether or not call waiting is enabled for the Webphone
Whether or not the waiting tone is played on a new incoming call
notifications object
missedCalls object
Whether or not missed call notifications are enabled for the user
The channels on which missed call notifications are sent
callOutsideBusinessHours object
Whether or not call outside business hours notifications are enabled for the user
The channels on which call outside business hours notifications are sent
voicemail object
Whether or not voicemail notifications are enabled for the user
The channels on which voicemail notifications are sent
insights object
Default value: true
Whether or not AI insights are enabled for the user
{
"id": "64a6b60be7ce3a7774155263",
"initials": "JD",
"firstName": "John",
"lastName": "Doe",
"fullName": "John Doe",
"email": "[email protected]",
"phoneNumber": {
"e164": "+31612345678",
"countryIsoCode": "NL",
"countryCallingCode": 31,
"number": "612345678"
},
"availability": "AVAILABLE",
"avatarUrls": {
"small": "https://api.rinkel.com/users/64a6b60be7ce3a7774155263/avatar/small?token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9",
"large": "https://api.rinkel.com/users/64a6b60be7ce3a7774155263/avatar/large?token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9"
},
"preferences": {
"language": "nl",
"defaultCountryCode": "NL",
"defaultOutboundNumber": "64b8e900cbe7501ee8467d3e",
"colorMode": "light",
"webphone": {
"ringTone": "ringtone1",
"ringDevice": true,
"callWaiting": {
"enabled": true,
"playWaitingTone": true
}
}
},
"notifications": {
"missedCalls": {
"enabled": true,
"channels": [
"email"
]
},
"callOutsideBusinessHours": {
"enabled": true,
"channels": [
"email",
"app"
]
},
"voicemail": {
"enabled": true,
"channels": [
"email",
"app"
]
}
},
"insights": {
"enabled": true
}
}
Bad request
Schema
- Array [
- ]
errors object[]
Human readable error code
Human readable error message
Human readable error detail
{
"errors": [
{
"code": "ERROR_CODE",
"message": "An error occurred while calling the endpoint",
"detail": "View more info at developers.rinkel.com"
}
]
}
Unauthorized
Forbidden
The user was not found
Internal Server Error