POST
/
api
/
end_users
/
{end_user_id_or_heron_id}
/
yodlee
curl --request POST \
  --url https://app.herondata.io/api/end_users/{end_user_id_or_heron_id}/yodlee \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "accounts": [
    {
      "balance": {
        "amount": 123,
        "currency": "<string>"
      },
      "classification": "<string>",
      "id": 123
    }
  ],
  "transactions": [
    {
      "accountId": 123,
      "amount": {
        "amount": 123,
        "currency": "<string>"
      },
      "baseType": "CREDIT",
      "category": "<string>",
      "date": "2023-11-07T05:31:56Z",
      "description": {
        "original": "<string>",
        "simple": "<string>"
      },
      "id": 123
    }
  ]
}'
{
  "_summary": {
    "request_id": "<string>"
  }
}

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 to upload

Body

application/json
accounts
object[]
transactions
object[]

Response

201 - application/json
OK
_summary
object