action callfire_find_calls { label: "Find calls" description: "To search for all calls sent or received by the user. Use \"id=0\" for the campaignId parameter to query for all calls sent through the POST /calls API. See [call states and results](https://developers.callfire.com/results-responses-errors.html)" provider: callfire method: GET path: "/calls" encoding: json input: { type: "object" properties: { batchId: { type: "integer" format: "int64" } campaignId: { type: "integer" format: "int64" } fields: { type: "string" } fromNumber: { type: "string" } id: { type: "array" items: { type: "integer" format: "int64" } } inbound: { type: "boolean" } intervalBegin: { type: "integer" format: "int64" } intervalEnd: { type: "integer" format: "int64" } label: { type: "string" } limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } results: { type: "string" } states: { type: "string" } toNumber: { type: "string" } } additionalProperties: false } output: { description: "~" type: "object" } }