action quotes_delete_quote_like { label: "delete_quote_like" description: "Remove the Like for the given Quote as a user of the API Key." provider: quotes method: DELETE path: "/quote/like" encoding: json input: { type: "object" properties: { quote_id: { type: "string" format: "string" } } required: ["quote_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }