Edit Agent & Delete Agent

Update Agent

curl -X POST https://tabbly.io/api/update-agent -H "Content-Type: application/json" -d '{ "api_key": "your-api-key", "agent_id": 123, "agent_name": "Updated Agent Name", "prompt_text": "Updated prompt text", "voice_id": 5, "status": "active" }'

Delete Agent

curl -X POST https://tabbly.io/api/delete-agent -H "Content-Type: application/json" -d '{ "api_key": "your-api-key", "agent_id": 123 }'

Last updated