Create voicemail greeting for current user.
The unique ID of the file.
OK
The unique ID of greeting.
const response = await fetch('https://HOSTNAME:8887/api/user/greetings', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();
{ "id": {} }
Retrieves a collection of greetings for current user.
const response = await fetch('https://HOSTNAME:8887/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" } ] }