POST
/
api
/
end_users
/
{end_user_id_or_heron_id}
/
inscribe
curl --request POST \
  --url https://app.herondata.io/api/end_users/{end_user_id_or_heron_id}/inscribe \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --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>"
  }
}

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
customer_name
string | null
parsed_details
object

Response

201 - application/json
OK
_summary
object