action quotes_put_quote_image { label: "put_quote_image" description: "Create a new quote image for a given quote. Choose background colors/images , choose different font styles and generate a beautiful quote image. Did you just had a feeling of being a god or what?!\n" provider: quotes method: PUT path: "/quote/image" encoding: json input: { type: "object" properties: { bg_color: { type: "string" format: "string" } bgimage_id: { type: "string" format: "string" } branding: { type: "boolean" format: "boolean" } font_id: { type: "string" format: "string" } halign: { type: "string" format: "string" } height: { type: "integer" format: "integer" } include_transparent_layer: { type: "boolean" format: "boolean" } quote_id: { type: "string" format: "string" } text_color: { type: "string" format: "string" } text_size: { type: "string" format: "string" } valign: { type: "string" format: "string" } width: { type: "integer" format: "integer" } } required: ["quote_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }