action envoice_estimation_api_status { label: "Retrieve the status of the estimation" provider: envoice method: GET path: "/api/estimation/status" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } "x-auth-key": { type: "string" } "x-auth-secret": { type: "string" } } required: ["id", "x-auth-key", "x-auth-secret"] additionalProperties: false } output: { type: "string" enum: ["Draft", "Accepted", "Rejected"] } }