Get IntraFi balance
Returns the IntraFi balance for the given account. IntraFi may sweep funds to multiple banks. This endpoint will include both the total balance and the amount swept to each institution.
get/accounts/{account_id}/intrafi_balance
Path parameters
account_idstring required
The identifier of the Account to get balances for.
Response
IntraFi Balance
Example response
{
"balances": [
{
"balance": 1750,
"bank": "Example Bank",
"bank_location": {
"city": "New York",
"state": "NY"
},
"fdic_certificate_number": "314159"
}
],
"currency": "USD",
"effective_date": "2020-01-31",
"total_balance": 1750,
"type": "intrafi_balance"
}