curl --request POST \
--url https://api.callrounded.com/v1/calls/phone \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: <api-key>' \
--data '{
"from_number": "+33912345678",
"to_number": "+33612345678",
"agent_id": "411b82c8-462a-4e1b-89bc-10ab3ce1ed29",
"dynamic_variables_values": {
"active": true,
"age": 35,
"appointment_date": "2023-05-15T14:30:00Z",
"first_name": "John",
"last_name": "Doe",
"opening_hours": {
"monday": [
{
"end": "17:00",
"start": "07:00"
}
]
}
}
}'