make_bulk_call
Initiate automated phone calls to multiple contacts simultaneously using a configured assistant and contact list for outreach campaigns.
Instructions
Make bulk phone calls
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| assistant_id | Yes | Assistant ID | |
| contact_bulk_id | Yes | Contact bulk ID |
Implementation Reference
- index.js:668-672 (handler)Switch case that implements the make_bulk_call tool handler by setting the specific API endpoint for bulk calls using assistant_id and contact_bulk_id, POST method with empty body. The actual HTTP request is made after the switch statement.case 'make_bulk_call': url = `${this.baseUrl}/twilio/${args.assistant_id}/callbulk/${args.contact_bulk_id}`; method = 'POST'; body = {}; break;
- index.js:409-420 (schema)Tool schema definition in the list of tools, specifying name, description, and input schema requiring assistant_id and contact_bulk_id.{ name: 'make_bulk_call', description: 'Make bulk phone calls', inputSchema: { type: 'object', properties: { assistant_id: { type: 'string', description: 'Assistant ID' }, contact_bulk_id: { type: 'string', description: 'Contact bulk ID' } }, required: ['assistant_id', 'contact_bulk_id'] } },