action quotes_post_quote_like { label: "post_quote_like" description: "Like 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/like" encoding: json input: { type: "object" properties: { quote_id: { type: "string" format: "string" } } required: ["quote_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }