JavaScript
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}}; fetch('https://blackbox.dasha.ai/api/v1/sip/alias', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "items": [ { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "alias": "<string>", "agentId": "<string>", "createdTime": "2023-11-07T05:31:56Z", "lastUpdateTime": "2023-11-07T05:31:56Z", "isDefault": true } ], "totalCount": 123, "skip": 123, "take": 123 }
Optional unique agent identifier to filter aliases
Number of aliases to skip for pagination (default: 0, minimum: 0)
0 <= x <= 2147483647
Maximum number of aliases to return (default: 20, range: 0-1000)
1 <= x <= 1000
Returns the list of aliases
Paginated response wrapper
Show child attributes
Was this page helpful?