This changelog provides an overview of the recent changes made to the Payabli APIs.
Changes for October 22, 2025
API changes
New splitAmount
field in transfer responses
We added a new splitAmount
field to transfer-related responses. This field represents the sum of each splitFundingAmount
of each record in the transfer, providing better visibility into split funding allocations without requiring additional API calls.
Affected endpoints
- GET /MoneyOut/get-transfers: Added
splitAmount
to theSummary
object in the response - GET /MoneyOut/get-transfer-detail: Added
splitAmount
to theSummary
object in the response - GET /MoneyOut/get-transfer-by-id: Added
splitAmount
to the individual transfer record in the response
What changed
- Added
splitAmount
as an optionaldouble
field in transfer summary and detail responses - The field will be
null
if the transfer has no split funding configuration - The value represents the total of all
splitFundingAmount
values across all records in the transfer
Example response (GET /MoneyOut/get-transfers)
Example response (GET /MoneyOut/get-transfer-by-id)
New wallet fields in statistics responses
We added the new inWalletTransactions
and inWalletVolume
fields to paypoint and organization statistics responses.
Only the GET /Statistic/basic/{mode}/{freq}/{level}/{entryId} endpoint is affected.
What changed
- Added
inWalletTransactions
as aninteger
field representing the total number of transactions made with wallets in a paypoint or organization - Added
inWalletVolume
as adouble
field representing the total volume of transactions made with wallets in a paypoint or organization