action quotes_post_quote_tags_add { label: "post_quote_tags_add" description: "Add a tag to a given Quote." provider: quotes method: POST path: "/quote/tags/add" encoding: json input: { type: "object" properties: { id: { type: "string" format: "string" } tags: { type: "string" format: "string" } } required: ["id", "tags"] additionalProperties: false } output: { type: "object" additionalProperties: true } }