Hello, up until about a month ago I was able to use the following endpoint to create and upload audio assets to another user’s account.
https://api.zoom.us/v2/phone/users/{user_id}/audios &
https://api.zoom.us/v2/phone/users/{user_id}/audios/batch
Now it appears that I can only use my own userid to upload or create audios.
The app was generated using Server-to-Server OAuth with the scope including all items under the Phone API.
This did work before, as I deployed about 60 users using this method, originally using your TTS, and more recently using the batch upload for audio files.
Every time I try to use anybody’s email beside mine it returns a 400 error.
This is the Json I’m passing to the request
{
“text”: “hello”,
“audio_name”: “hello5.mp3”,
“voice_language”: “en-US”,
“voice_accent”: “Joanna-Female”
}
What am I doing wrong?