action sinao_app_documents_purchases_purchases_updatestatus { label: "Update the status of an invoice" description: "" provider: sinao method: POST path: "/apps/{appId}/purchases/{id}/updatestatus" encoding: json input: { type: "object" properties: { id: { type: "integer" } status: { type: "string" enum: ["completed", "paid"] } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }