curl -X POST https://api.thinnest.ai/v1/agents \
-H "Authorization: Bearer $THINNESTAI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Order Agent with Approvals",
"model": "gpt-4o",
"instructions": "You help customers place orders. Before processing any payment or order, you MUST get verbal confirmation from the caller.",
"voiceEnabled": true,
"transcriber": { "provider": "deepgram", "model": "nova-2-conversationalai" },
"voice": { "provider": "deepgram", "voiceId": "aura-2-thalia-en" },
"voiceApprovalEnabled": true,
"voiceApprovalMode": "blocking",
"voiceApprovalMaxClarifications": 3,
"voiceApprovalTimeoutMinutes": 5
}'