action quotes_get_quote_image { label: "get_quote_image" description: "Gets a Quote image for a given id. Response can be an image file as a binary or a base64 encoded contents wrapped in json. `TODO`\n" provider: quotes method: GET path: "/quote/image" encoding: json input: { type: "object" properties: { binary: { type: "boolean" format: "boolean" } id: { type: "string" format: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }