cURL
curl --request POST \ --url https://your-instance.example.com/api/messages/quick-bulk-send \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "contactIds": [ "<string>" ], "message": "<string>", "templateId": "<string>" } '
{ "success": true, "summary": { "total": 123, "success": 123, "failed": 123 }, "results": [ { "contactId": "<string>", "success": true, "name": "<string>", "messageId": "<string>", "messageDocId": "<string>", "status": "<string>", "error": "<string>" } ] }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Either message or templateId must be provided, but not both
Bulk send results
Show child attributes