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 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --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

x-api-key
string
header
required

Path Parameters

end_user_id_or_heron_id
string
required

The end_user_id or heron_id of EndUser to upload

Body

application/json

Response

201 - application/json
OK

The response is of type object.