curl --location 'https://wazap-ai-api.up.railway.app/external/v1/messages/send-bulk' \
--header 'X-Company-Token: <api-key>' \
--header 'X-Account-Token: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"message": "Promoção especial! Confira nosso site.",
"contacts": [
"5511999999999",
"5511888888888",
"5511777777777"
]
}'{
"success": true,
"message": "Envio em massa concluído: 10 enviadas, 0 erros, 2 inválidos",
"data": {
"batchUuid": "fc04296f-170f-455b-bff8-c6d7a5e9f76f",
"summary": {
"total": 12,
"success": 10,
"failed": 0,
"invalid": 2
},
"results": [
{
"number": "string",
"uuid": "string",
"messageId": "string",
"status": "string"
}
],
"errors": [
{
"number": "string",
"error": "string",
"message": "string"
}
]
}
}