action ritekit_text_to_image { label: "Text to Image" description: "Returns URL of an image created from text according to given style parameters" provider: ritekit method: GET path: "/v1/images/quote" encoding: json input: { type: "object" properties: { animation: { type: "string" } author: { type: "string" } authorFont: { type: "string" } authorFontColor: { type: "string" } backgroundColor: { type: "string" } bgType: { type: "string" } brandLogo: { type: "string" } enableHighlight: { type: "integer" } fontSize: { type: "integer" } gradientColor1: { type: "string" } gradientColor2: { type: "string" } gradientType: { type: "string" } highlightColor: { type: "string" } quote: { type: "string" } quoteFont: { type: "string" } quoteFontColor: { type: "string" } showQuoteMark: { type: "integer" } } required: ["animation", "author", "authorFont", "authorFontColor", "backgroundColor", "bgType", "brandLogo", "enableHighlight", "fontSize", "gradientColor1", "gradientColor2", "gradientType", "highlightColor", "quote", "quoteFont", "quoteFontColor"] additionalProperties: false } output: { type: "object" additionalProperties: true } }