curl --request GET \
--url https://app.herondata.io/api/end_users/{end_user_id_or_heron_id}/missing_accounts \
--header 'x-api-key: <api-key>'{
"missing_accounts": [
{
"account_name": "Checking",
"account_number": "****4321",
"transactions": [
{
"amount": -42.42,
"description": "GOOGLE *ADS12340929 [email protected] US",
"account_id": "checking_account_202348",
"currency": "USD",
"heron_id": "txn_kebhhtRg7eR4bZ5hjXHGhf",
"timestamp": "2021-11-12T10:38:05Z"
}
]
}
]
}Get a list of possible missing accounts for a given End User. This endpoint is in beta and likely to change.
curl --request GET \
--url https://app.herondata.io/api/end_users/{end_user_id_or_heron_id}/missing_accounts \
--header 'x-api-key: <api-key>'{
"missing_accounts": [
{
"account_name": "Checking",
"account_number": "****4321",
"transactions": [
{
"amount": -42.42,
"description": "GOOGLE *ADS12340929 [email protected] US",
"account_id": "checking_account_202348",
"currency": "USD",
"heron_id": "txn_kebhhtRg7eR4bZ5hjXHGhf",
"timestamp": "2021-11-12T10:38:05Z"
}
]
}
]
}The end_user_id or heron_id of EndUser
OK
Show child attributes
An account name extracted from the transaction description
"Checking"
An account number extracted from the transaction description
"****4321"
Show child attributes
Amount. Inflows to an account should be positive, and outflows from an account should be negative. If using Plaid, please flip the amount sign for all transactions.
-42.42
The text description for the transaction
"GOOGLE *ADS12340929 [email protected] US"
Your unique ID for account associated with transaction
400"checking_account_202348"
ISO 4217 currency code
3"USD"
Unique ID of transaction; generated by Heron Data
"txn_kebhhtRg7eR4bZ5hjXHGhf"
The ISO 8601 timezone aware timestamp of the transaction; takes precedence over 'date'
"2021-11-12T10:38:05Z"
Was this page helpful?