Retrieve a collection of user call recordings.
OK
Total number of resource.
100
const response = await fetch('http://127.0.0.1:8888/api/user/recordings', { method: 'GET', headers: {}, }); const data = await response.json();
{ "count": 100, "items": [ { "id": {}, "caller": "text", "callee": "text", "started_at": {}, "ended_at": {} } ] }
Get details of an user call recording.
The unique ID of call recording.
const response = await fetch('http://127.0.0.1:8888/api/user/recordings/{id}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "items": [ { "caller": "text", "callee": "text", "started_at": {}, "ended_at": {}, "file_name": "text", "file_size": 0, "file_url": "/api/blobs/WexWdABcd5D4PDgzTKV3gAAAEu00WcK" } ] }