action rebilly_get_invoice_transaction_allocation_collection { label: "Get transaction amounts allocated to an invoice" description: "Get the precise amounts from a transaction allocated as invoice payments." provider: rebilly method: GET path: "/invoices/{id}/transaction-allocations" encoding: json output: { type: "array" items: { type: "object" properties: { _links: { type: "array" description: "The links related to resource." items: { type: "object" } } amount: { type: "number" } currency: { type: "object" } invoiceId: { type: "string" description: "The resource ID. Defaults to UUID v4." } transactionId: { type: "object" additionalProperties: true } } } } }