#How do I add an agent to my phone number via api?
1 messages · Page 1 of 1 (latest)
AI-generated Answer for sack5539
To add an agent to your phone number using the API, you can use the PATCH method to update the phone number details by ID. Here's a Python example using the ElevenLabs library:
from elevenlabs import ElevenLabs
client = ElevenLabs(
api_key="YOUR_API_KEY",
)
client.conversational_ai.update_phone_number(
phone_number_id="TeaqRRdTcIfIu2i7BYfT",
agent_id="YOUR_AGENT_ID"
)
Make sure to replace "YOUR_API_KEY" with your actual API key and "YOUR_AGENT_ID" with the ID of the agent you want to assign. The phone_number_id should be the ID of the phone number you want to update.
Can you do it in curl?