action quotes_post_quote_dislike { label: "post_quote_dislike" description: "Dislike the given Quote as a user of the API Key. Same as `put` but a convenient alias for those clients that don't support `put` cleanly." provider: quotes method: POST path: "/quote/dislike" encoding: json input: { type: "object" properties: { quote_id: { type: "string" format: "string" } } required: ["quote_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }