The deleted_users API is part of Voiso's User Management APIs. Use it to obtain a list of agent names and IDs for all the previously deleted agents. Please refer to the detailed API endpoint specification here.
The deleted_users API requires the base URL and the user API key.
The deleted_users API uses the key
parameter: the user API key representing the user making the request. Based on the user's permissions configured, Voiso provides the data allowed for that particular user.
HTTP request example:
https://cluster1.voiso.com/api/v2/cdr/deleted_agents ?key=cc7c76b8987a27ab5...b89b00ab6c3
JSON request example:
{
"method": "GET",
"url": "https://cluster1.voiso.com/api/v2/cdr/deleted_agents",
"headers": {
"Accept": "application/json"
},
"params": {
"key": "cc7c76b8987a27ab5...b89b00ab6c3"
}
}
The following table describes the elements of the response.
Element | Description | Type | Notes |
---|---|---|---|
id | The ID assigned by the system when the user is created. | number | |
name | The name of the former user. | string |
[
{
"id": 28982
"name": "Roberta Ride",
}
]
The following issues are sometimes encountered:
The deleted users API requires the user API key to validate the request. If you see this error, "error": "Invalid User API Key"
, check that you use the correct user API key. For more information about API keys, refer to Authentication.
Was this page helpful?