action quotes_delete_quote_dislike { label: "delete_quote_dislike" description: "Remove the disLike for the given Quote as a user of the API Key." provider: quotes method: DELETE 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 } }