action quotes_post_quote_tags_remove { label: "post_quote_tags_remove" description: "Remove a tag from a given quote." provider: quotes method: POST path: "/quote/tags/remove" 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 } }