action callfire_add_text_broadcast_recipients { label: "Add recipients to a text broadcast" description: "Use this API to add recipients to a text broadcast which is already created. Post a list of Recipient objects to be immediately added to the text 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: "/texts/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" } }