Customers
List unmatched deposits
Returns pending deposits that could not be automatically matched to a transfer. These deposits are typically due to: wrong amount sent, multiple partial payments, or deposits to a wallet with no pending transfer. Treasury and transaction wallet deposits are excluded. Contact support to reconcile these deposits with a transfer, or sweep them to a treasury wallet.
get/v1/customers/{id}/unmatched-deposits
Path parameters
idstring required
Customer ID
Query parameters
includeResolvedboolean
Include reconciled and swept deposits (default: false)
Headers
X-API-Keystring
API key
Response
Example response
{
"deposits": [
{
"id": "udep_abc123",
"currency": "USDC",
"amount": "50000000000",
"allocatedAmount": "20000000000",
"provider": "INFINITE"
}
],
"totals": [
{
"chain": "base",
"currency": "USDC",
"amount": "5000000"
}
]
}Changes
No recorded changes to this endpoint across all 6 revisions of this API.