action callfire_get_text_broadcast_stats { label: "Get statistics on text broadcast" description: "Returns the broadcast statistics. Example: total number of the sent/received actions, total cost, number of remaining outbound actions, error count, etc" provider: callfire method: GET path: "/texts/broadcasts/{id}/stats" encoding: json input: { type: "object" properties: { begin: { type: "integer" format: "int64" } end: { type: "integer" format: "int64" } fields: { type: "string" } id: { type: "integer" format: "int64" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "~" properties: { billedAmount: { type: "number" description: "~" } doNotTextCount: { type: "integer" format: "int32" description: "~" } errorCount: { type: "integer" format: "int32" description: "~" } recievedCount: { type: "integer" format: "int32" description: "~" } remainingOutboundCount: { type: "integer" format: "int32" description: "~" } sentCount: { type: "integer" format: "int32" description: "~" } tooBigCount: { type: "integer" format: "int32" description: "~" } totalOutboundCount: { type: "integer" format: "int32" description: "~" } unsentCount: { type: "integer" format: "int32" description: "~" } } } }