action callfire_create_call_broadcast { label: "Create a call broadcast" description: "Creates a call broadcast campaign using the Call Broadcast API. Send a CallBroadcast in the message body to add details in a voice broadcast campaign. The campaign can be created without contacts and bare minimum configuration, but contacts will have to be added further on to use the campaign" provider: callfire method: POST path: "/calls/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" } } } }