action callfire_get_call_recording_mp3_by_name { label: "Get call mp3 recording by name" description: "Returns a MP3 recording of a particular call, response contains binary data, content type is 'audio/mpeg'" provider: callfire method: GET path: "/calls/{id}/recordings/{name}.mp3" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int64" } name: { type: "string" } } required: ["id", "name"] additionalProperties: false } output: { type: "object" additionalProperties: true } }