action quotes_put_quote_dislike { label: "put_quote_dislike" description: "Dislike the given Quote as a user of the API Key. Some clients don't cleanly support `PUT`, in such scenarios use the `POST` version of this." provider: quotes method: PUT 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 } }