action callfire_create_text_broadcast { label: "Create a text broadcast" description: "Creates a text broadcast campaign using the Text Broadcast API. Send a TextBroadcast object in the message body to detail a text broadcast campaign. A campaign can be created without contacts and with bare minimum configuration, but contacts have to be added further on to use the campaign. It supports scheduling, retry logic, pattern-based messages." provider: callfire method: POST path: "/texts/broadcasts" encoding: json input: { type: "object" properties: { start: { type: "boolean" } strictValidation: { type: "boolean" } } additionalProperties: false } output: { type: "object" description: "An id of a resource" properties: { id: { type: "integer" format: "int64" description: "An id of a resource" } } } }