curl -X POST "https://prod.featherhq.com/api/v1/agents" \
-H "X-API-Key: $FEATHER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Demo Calling Agent",
"description": "Qualifies and routes inbound or outbound conversations",
"agentType": "CALL",
"useKnowledgeBase": false,
"prompt": {
"system": "You are a concise and helpful assistant for Feather Labs. Introduce yourself clearly, answer questions directly, and capture the next step.",
"variables": [
{
"name": "company",
"required": false,
"defaultValue": "Feather Labs"
}
],
"tools": [],
"preBuiltTools": []
},
"voicemailMessage": null,
"overrideSTTConfig": null,
"sttConfigId": "YOUR_STT_CONFIG_ID",
"ttsConfigId": "YOUR_TTS_CONFIG_ID",
"llmConfigId": "YOUR_LLM_CONFIG_ID",
"voiceId": "YOUR_VOICE_ID"
}'