action callfire_get_text_broadcast_texts { label: "Find texts in a text broadcast" description: "This endpoint will enable the user to page through all of the texts for a particular text broadcast campaign" provider: callfire method: GET path: "/texts/broadcasts/{id}/texts" encoding: json input: { type: "object" properties: { batchId: { type: "integer" format: "int64" } fields: { type: "string" } id: { type: "integer" format: "int64" } limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } } required: ["id"] additionalProperties: false } output: { description: "~" type: "object" } }