Making a Payments to a Liquidity Account
1 minute read
To fund a Liquidity Account using the Payments API, follow the standard Ping Payments flow but use the Liquidity Account ID as the recipient in order_items instead of a merchant_id.
This means any payment method supported by Ping can be used to top up a Liquidity Account.
Standard Order Items
"order_items": [
{
"amount": 10000,
"merchant_id": "db848cb6-27f6-4500-8fa0-66b2ef1feb57",
"name": "Donation",
"vat_rate": 0
}
] Liquidity Account Order Item
"order_items": [
{
"amount": 10000,
"liquidity_account_id": "db848cb6-27f6-4500-8fa0-66b2ef1feb57",
"name": "Donation",
"vat_rate": 0
}
] After the payment has been completed and the order has been settled the funds are available on the Liquidity Account.
Updated 2 days ago