{
"service": "Campanha de Vendas",
"duplicate": false,
"contact": "Contato Exemplo",
"complement": "Bloco A",
"phone_list": null,
"phone_list_detailed": [
{
"phone": "5511987654321",
"type": "cell_phone"
},
{
"phone": "551132109876",
"type": "house"
}
],
"schedule": {
"day": 15,
"month": 11,
"year": 2023,
"start": {
"hour": 10,
"min": 0
},
"end": {
"hour": 18,
"min": 0
}
}
}curl --location --request POST '/dialer/create_contact' \
--header 'Content-Type: application/json' \
--data-raw '{
"service": "Campanha de Vendas",
"duplicate": false,
"contact": "Contato Exemplo",
"complement": "Bloco A",
"phone_list": null,
"phone_list_detailed": [
{
"phone": "5511987654321",
"type": "cell_phone"
},
{
"phone": "551132109876",
"type": "house"
}
],
"schedule": {
"day": 15,
"month": 11,
"year": 2023,
"start": {
"hour": 10,
"min": 0
},
"end": {
"hour": 18,
"min": 0
}
}
}'{
"response": {
"command": "create_contact",
"status": "ok",
"id": 123
}
}