action billingo_update_payment { label: "Update payment history" description: "Update payment history an existing document. Returns a payment history object if the update is succeded." provider: billingo method: PUT path: "/documents/{id}/payments" encoding: json input: { type: "object" properties: { id: { type: "integer" } } required: ["id"] additionalProperties: false } output: { type: "array" items: { type: "object" required: ["date", "price", "payment_method"] properties: { conversion_rate: { type: "number" format: "float" } date: { type: "string" format: "date" } payment_method: { type: "string" enum: ["aruhitel", "bankcard", "barion", "barter", "cash", "cash_on_delivery", "coupon", "elore_utalas", "ep_kartya", "kompenzacio", "levonas", "online_bankcard", "payoneer", "paypal", "paypal_utolag", "payu", "pick_pack_pont", "postai_csekk", "postautalvany", "skrill", "szep_card", "transferwise", "upwork", "utalvany", "valto", "wire_transfer"] } price: { type: "number" format: "float" } voucher_number: { type: "string" } } } } }