action envoice_estimation_api_change_status { label: "Change estimation status" provider: envoice method: POST path: "/api/estimation/changestatus" encoding: form input: { type: "object" properties: { Id: { type: "integer" format: "int32" description: "Estimation Id" } Status: { type: "string" description: "New status of the estimation" enum: ["Draft", "Accepted", "Rejected"] } "x-auth-key": { type: "string" } "x-auth-secret": { type: "string" } } required: ["x-auth-key", "x-auth-secret"] additionalProperties: false } output: { type: "boolean" } }