Create voicemail greeting for current user.
The unique ID of the file.
OK
The unique ID of greeting.
Retrieves a collection of greetings for current user.
const response = await fetch('http://127.0.0.1:8888/api/user/greetings', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();
{ "id": {} }
const response = await fetch('http://127.0.0.1:8888/api/user/greetings', { method: 'GET', headers: {}, }); const data = await response.json();
{ "items": [ { "id": {}, "enabled": false, "file_name": "text", "file_size": 0, "file_url": "/api/blobs/WexWdABcd5D4PDgzTKV3gAAAEu00WcK" } ] }