action envoice_estimation_api_send_to_client { label: "Send the provided estimation to the client" provider: envoice method: POST path: "/api/estimation/sendtoclient" encoding: form input: { type: "object" properties: { AttachPdf: { type: "boolean" description: "Should attach pdf file" } EstimationId: { type: "integer" format: "int32" description: "Id of the estimation" } Id: { type: "integer" format: "int32" description: "Id of the estimation" } Message: { type: "string" description: "Message to be embedded in the email" } SendToSelf: { type: "boolean" description: "Should email copy be send to self" } Subject: { type: "string" description: "Subject for the email" } "x-auth-key": { type: "string" } "x-auth-secret": { type: "string" } } required: ["x-auth-key", "x-auth-secret"] additionalProperties: false } output: { type: "integer" format: "int32" } }