action callfire_get_call_recordings { label: "Get call recordings for a call" description: "Returns a list of recordings metadata of particular call. Metadata contains link to a MP3 recording" provider: callfire method: GET path: "/calls/{id}/recordings" encoding: json input: { type: "object" properties: { fields: { type: "string" } id: { type: "integer" format: "int64" } } required: ["id"] additionalProperties: false } output: { description: "~" type: "object" } }