curl --request POST \
--url https://app.herondata.io/api/end_users/{end_user_id_or_heron_id}/inscribe \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"customer_name": null,
"parsed_details": {
"bank_accounts": [
{
"account_type": "<string>",
"beginning_balance": {
"confidence": 123,
"normalized": 123,
"raw": "<string>"
},
"ending_balance": {
"confidence": 123,
"normalized": 123,
"raw": "<string>"
},
"institution_name": "<string>",
"number": {
"confidence": 123,
"normalized": "<string>",
"raw": "<string>"
},
"transactions": [
{
"amount": 123,
"date": "2023-12-25",
"description": "<string>",
"id": "<string>"
}
],
"transactions_match_balances": true
}
],
"name": {
"raw": "<string>"
}
}
}'
{
"_summary": {
"request_id": "<string>"
}
}
Upload Inscribe JSON for a specified end user to translate into Heron Data format and add transactions for the end user
curl --request POST \
--url https://app.herondata.io/api/end_users/{end_user_id_or_heron_id}/inscribe \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"customer_name": null,
"parsed_details": {
"bank_accounts": [
{
"account_type": "<string>",
"beginning_balance": {
"confidence": 123,
"normalized": 123,
"raw": "<string>"
},
"ending_balance": {
"confidence": 123,
"normalized": 123,
"raw": "<string>"
},
"institution_name": "<string>",
"number": {
"confidence": 123,
"normalized": "<string>",
"raw": "<string>"
},
"transactions": [
{
"amount": 123,
"date": "2023-12-25",
"description": "<string>",
"id": "<string>"
}
],
"transactions_match_balances": true
}
],
"name": {
"raw": "<string>"
}
}
}'
{
"_summary": {
"request_id": "<string>"
}
}
The end_user_id
or heron_id
of EndUser to upload
OK
The response is of type object
.
Was this page helpful?