List all users
List all users
Query Parameters
Default value: 1
The page number to retrieve
Default value: 10
The number of items per page
Include avatar display urls in the response for each user
- 200
- 401
Successfully retrieved the user(s)
Schema
- Array [
- ]
data object[]
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
meta object
pagination object
The number of items in the collection
The number of pages in the collection
The current page
Possible values: >= 1
and <= 50
The number of items per page
links object
The url to the first page
The url to the first page
The url to the last page
The url to the previous page
The url to the next page
{
"data": [
{
"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
}
}
],
"meta": {
"pagination": {
"totalItems": 100,
"totalPages": 10,
"currentPage": 1,
"perPage": 10
},
"links": {
"self": "https://api.rinkel.com/users?page=1",
"first": "https://api.rinkel.com/users?page=1",
"last": "https://api.rinkel.com/users?page=10",
"previous": null,
"next": "https://api.rinkel.com/users?page=2"
}
}
}
Unauthorized