I’m trying to modify the greeting prompt for an auto-receptionist using the rest api. The greeting prompt is normally “test1.mp3”. I want to use the rest api to change it to “test2.mp3”.
PATCH: https://api.zoom.us/v2/phone/extension/{extensionId}/call_handling/settings/business_hours {“sub_setting_type”:“call_handling”,“settings”:{“greeting_prompt_id”:“{audioId}”}}
extensionId is the extension_id for the auto-receptionist; audioId is the audio_id of “test2.mp3”.
Making this call does not give an error. However, the greeting prompt for the auto-receptionist changes to Default.
What am I missing?