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": [
{
"account_id": "checking_account_202348",
"amount": -42.42,
"currency": "USD",
"description": "GOOGLE *ADS12340929 [email protected] US",
"heron_id": "txn_DqLYoKiJZ4WmHEkcQdvYon",
"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": [
{
"account_id": "checking_account_202348",
"amount": -42.42,
"currency": "USD",
"description": "GOOGLE *ADS12340929 [email protected] US",
"heron_id": "txn_DqLYoKiJZ4WmHEkcQdvYon",
"timestamp": "2021-11-12T10:38:05Z"
}
]
}
]
}
The end_user_id
or heron_id
of EndUser
OK
The response is of type object
.