action billingo_get_payment { label: "Retrieve a payment histroy" description: "Retrieves the details of payment history an existing document." provider: billingo method: GET 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" } } } } }