action quotes_delete_quote { label: "delete_quote" description: "Delete a quote. The user needs to be the owner of the quote to be able to delete it.\n" provider: quotes method: DELETE path: "/quote" encoding: json input: { type: "object" properties: { id: { type: "string" format: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }