{
"service": "Campanha de Vendas",
"mode": "append",
"duplicate": false,
"contacts": [
{
"item": "item1",
"contact": "Contato 1",
"complement": "Casa",
"phone_list": null,
"phone_list_detailed": [
{
"phone": "5511987650000",
"type": "cell_phone"
}
],
"schedule": null
},
{
"item": "item2",
"contact": "Contato 2",
"complement": "Trabalho",
"phone_list": null,
"phone_list_detailed": [
{
"phone": "551132100000",
"type": "office"
}
],
"schedule": {
"day": 16,
"month": 11,
"year": 2023,
"start": {
"hour": 9,
"min": 0
},
"end": {
"hour": 17,
"min": 0
}
}
}
]
}
curl --location --request POST '/dialer/import_contacts' \
--header 'Content-Type: application/json' \
--data-raw '{
"service": "Campanha de Vendas",
"mode": "append",
"duplicate": false,
"contacts": [
{
"item": "item1",
"contact": "Contato 1",
"complement": "Casa",
"phone_list": null,
"phone_list_detailed": [
{
"phone": "5511987650000",
"type": "cell_phone"
}
],
"schedule": null
},
{
"item": "item2",
"contact": "Contato 2",
"complement": "Trabalho",
"phone_list": null,
"phone_list_detailed": [
{
"phone": "551132100000",
"type": "office"
}
],
"schedule": {
"day": 16,
"month": 11,
"year": 2023,
"start": {
"hour": 9,
"min": 0
},
"end": {
"hour": 17,
"min": 0
}
}
}
]
}'
{
"response": {
"command": "import_contacts",
"status": "ok",
"total": 102,
"count": 2,
"initial_id": 124,
"errors": 0,
"error_list": null
}
}