action callfire_update_text_broadcast { label: "Update a text broadcast" description: "Allows modifying the configuration of existing text broadcast campaign. See TextBroadcast for more information on what can/can't be updated on this API" provider: callfire method: PUT path: "/texts/broadcasts/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int64" } strictValidation: { type: "boolean" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "~" properties: { id: { type: "integer" format: "int64" description: "~" } } } }