action callfire_add_call_broadcast_recipients { label: "Add recipients to a call broadcast" description: "Use this API to add the recipients to an existing voice broadcast. Post a list of Recipient objects to be added to the voice broadcast campaign. These contacts will not go through validation process, and will be acted upon as they are added. Recipients may be added as a list of contact ids, or list of numbers" provider: callfire method: POST path: "/calls/broadcasts/{id}/recipients" encoding: json input: { type: "object" properties: { fields: { type: "string" } id: { type: "integer" format: "int64" } strictValidation: { type: "boolean" } } required: ["id"] additionalProperties: false } output: { description: "~" type: "object" } }