PlayHT and Assistant Edit Error
# support
v
I am unable to edit any of my assistants configured with a Play.HT voice previously set up. (Calls are active and voice working on the line) I’ve also noticed they removed PlayHT as a provider of voice inside the assistant. The only assistants I’m able to edit are those with a different provider already selected. Any fixes for this? I need to be able to edit the forwarding number. I’m sure I can edit with API, but my interface is stuck for those assistants & I’m sure others are facing the same. https://cdn.discordapp.com/attachments/1402740894117138432/1402740894645485629/IMG_4392.jpg?ex=689503c2&is=6893b242&hm=2fbf71a4dff1836cef9a2cfbe0fcfe8629c5be06372f3e485caea39bef311727& https://cdn.discordapp.com/attachments/1402740894117138432/1402740895165452440/IMG_8677.jpg?ex=689503c3&is=6893b243&hm=9fdf9d5aa00bf4ba980dc46034d40610c6641ac33a0b99c763d6ac32b7e28898&
v
You can update your assistant's forwarding number using the Vapi API as a workaround. Here's a sample cURL command to PATCH the assistant (replace
<assistant_id>
,
<token>
, and
<new_number>
with your values):
Copy code
bash
curl -X PATCH https://api.vapi.ai/assistant/<assistant_id> \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{"forwardingNumber": "<new_number>"}'
This lets you edit the forwarding number even if the UI is stuck. Source: - [Update Assistant (API Reference)](https://docs.vapi.ai/api-reference/assistants/update?explorer=true)
v
Message marked as helpful by @VoicePanda.ai! 🎉
c
If you need help updating your assistants config to default voice settings please let us know
3 Views