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