action billingo_delete_product { label: "Delete a product" description: "Delete an existing product." provider: billingo method: DELETE path: "/products/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }