action callfire_find_text_broadcasts { label: "Find text broadcasts" description: "Searches for all text broadcasts created by user. Can query on label, name, and the current running status of the campaign. Returns a paged list of text broadcasts" provider: callfire method: GET path: "/texts/broadcasts" encoding: json input: { type: "object" properties: { fields: { type: "string" } intervalBegin: { type: "integer" format: "int64" } intervalEnd: { type: "integer" format: "int64" } label: { type: "string" } limit: { type: "integer" format: "int32" } name: { type: "string" } offset: { type: "integer" format: "int32" } running: { type: "boolean" } scheduled: { type: "boolean" } } additionalProperties: false } output: { description: "~" type: "object" } }