action callfire_get_call_broadcast_stats { label: "Get statistics on call broadcast" description: "Returns broadcast statistics like total number of sent/received actions, total cost, number of remaining outbound actions, error count, etc" provider: callfire method: GET path: "/calls/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: { answeringMachineCount: { type: "integer" format: "int32" description: "~" } billedAmount: { type: "number" description: "~" } billedDuration: { type: "integer" format: "int32" description: "~" } busyCount: { type: "integer" format: "int32" description: "~" } callsAttempted: { type: "integer" format: "int32" description: "~" } callsAwaitingRedial: { type: "integer" format: "int32" description: "~" } callsDuration: { type: "integer" format: "int32" description: "~" } callsLiveAnswer: { type: "integer" format: "int32" description: "~" } callsPlaced: { type: "integer" format: "int32" description: "~" } callsRemaining: { type: "integer" format: "int32" description: "~" } dialedCount: { type: "integer" format: "int32" description: "~" } doNotCallCount: { type: "integer" format: "int32" description: "~" } errorCount: { type: "integer" format: "int32" description: "~" } liveCount: { type: "integer" format: "int32" description: "~" } miscCount: { type: "integer" format: "int32" description: "~" } noAnswerCount: { type: "integer" format: "int32" description: "~" } remainingOutboundCount: { type: "integer" format: "int32" description: "~" } responseRatePercent: { type: "integer" format: "int32" description: "~" } totalCount: { type: "integer" format: "int32" description: "~" } totalOutboundCount: { type: "integer" format: "int32" description: "~" } transferCount: { type: "integer" format: "int32" description: "~" } } } }