GET
/
api
/
end_users
/
{end_user_id_or_heron_id}
/
missing_accounts
curl --request GET \
  --url https://app.herondata.io/api/end_users/{end_user_id_or_heron_id}/missing_accounts \
  --header 'Authorization: Basic <encoded-value>'
{
  "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_KjPQKaF6BdpSpR6ewTPXNE",
          "timestamp": "2021-11-12T10:38:05Z"
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

end_user_id_or_heron_id
string
required

The end_user_id or heron_id of EndUser

Response

200 - application/json
OK
missing_accounts
object[]