action envoice_product_api_delete { label: "Delete an existing product" provider: envoice method: POST path: "/api/product/delete" encoding: form input: { type: "object" properties: { Id: { type: "integer" format: "int32" description: "Id of product to be deleted" } "x-auth-key": { type: "string" } "x-auth-secret": { type: "string" } } required: ["x-auth-key", "x-auth-secret"] additionalProperties: false } output: { type: "integer" format: "int32" } }