curl --location 'https://api.kyzo.ai/organizations/YOUR-KYZO-ORG-ID/agents/YOUR-KYZO-AGENT-ID/placeCall' \
--header 'x-api-key: x-kyzo-api-key' \
--header 'Content-Type: application/json' \
--data-raw '{
"fromPhoneNumberId": "YOUR-KYZO-AI-PHONE-NUMBER-ID",
"phoneNumber": "+1787998989",
"email": "user@email.cm",
"tools": [
{
"tool_type": "sentiment",
"execution_order": 0,
"args": {
"language": "English"
}
},
{
"tool_type": "custom_field_extraction",
"execution_order": 1,
"args": {
"fields": [
{
"fieldName": "budget",
"fieldDescription": "The maximum amount of money a lead is willing to spend",
"fieldType": "number"
},
{
"fieldName": "area",
"fieldDescription": "The name of the area in which they are interested to invest",
"fieldType": "text"
},
{
"fieldName": "age",
"fieldDescription": "The age of client",
"fieldType": "number"
}
]
}
}
],
"agentParams": {
"first_name": "David"
},
"referenceId": "YOUR-CRM-OBJECT-ID"
}'