Open Banking
Upload Open Banking Data (Inscribe Financial Data Format) (BETA)
Uploads Open Banking Data (Inscribe Financial Data Format) to an Inscribe customer (BETA). See our guide to submitting open banking data here.
post/customers/{customer_id}/open_banking_data/inscribe_financial_data
Path parameters
customer_idstring uuid required
The Inscribe customer id.
Request body
Example request
{
"start_date": "2023-01-01",
"end_datetime": "2023-01-31T23:59:59Z",
"accounts": [
{
"account_name": "Checking Gold Account",
"account_number": "123456789",
"account_type": "PERSONAL",
"account_subtype": "PERSONAL_CHECKING",
"available_balance": 2500.5,
"balance": 2500.5,
"currency_code": "USD",
"guid": "123e4567-e89b-12d3-a456-426614174000",
"institution_name": "Oakwood Clearwater Bank",
"owners": [
{
"address": "123 Bridge Street, Sampleton, USA",
"name": "Alan Johnson"
}
],
"transactions": [
{
"amount": -100,
"currency_code": "USD",
"date": "2023-01-15",
"description": "Grocery Store Payment",
"guid": "123e4567-e89b-12d3-a456-426614174000",
"status": "PENDING"
}
]
}
]
}Response
Successfully created a new Open Banking Data.
Example response
{
"id": "0efae611-b3eb-4b84-8ed0-36f11430f5a2",
"created_at": "2022-07-14T09:46:10.510Z",
"state": "PROCESSED",
"no_of_bank_accounts": 2
}