OpenAPI 3.0.3UNLICENSED2026-08-1396241401.4 KB
35fe01ca087b
ledger-cash deposits
Retrieve list of cash deposits
Retrieve a list of cash deposits, can accept accountId, status
get/ledger/cash-deposits
Query parameters
accountIdstring uuid
Filter by the account that was credited. Can be the main account ID or a sub-account ID.
statusstring
pageinteger
Page parameter, starting from 1
sizeinteger
Response
Cash deposits list
Example response
{
"content": [
{
"currency": "USD",
"payinCurrency": "NGN",
"amount": 100,
"rate": 1450.75,
"payinAmount": 145075,
"providerReference": "PROV123456",
"paymentDetails": {
"details": {
"accountName": "John Doe",
"accountNumber": "230101010",
"reference": "PROV123456"
},
"payinCurrency": "NGN",
"paymentMethods": [
{
"fee": {
"percentage": 0.0035,
"fixedAmount": 1.5,
"currency": "USD"
},
"limits": {
"minAmount": 1,
"firstParty": {
"maxPerTransaction": 250000,
"maxPerDay": 24000
},
"thirdParty": {
"maxPerTransaction": 250000,
"maxPerDay": 24000
},
"currency": "USD"
},
"timeline": {
"minValue": 1,
"maxValue": 3
}
}
]
}
}
]
}