action quotes_post_qshow_quotes_add { label: "post_qshow_quotes_add" description: "Add a quote to a given Qshow." provider: quotes method: POST path: "/qshow/quotes/add" encoding: json input: { type: "object" properties: { id: { type: "string" format: "string" } quoteid: { type: "string" format: "string" } } required: ["id", "quoteid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }