➕Create without Customer
In order to complete a Business Affordability Assessment, you will first need to create a Business Bank Account ID.
In order to complete a business affordability assessment a unique Business Bank Account ID needs to be created. PDF Bank Statements collected from a Business are stored against the Business bank_account_id.
POST {{baseUrl}}/business/bank-accounts
Headers
Content-Type*
application/json
Request Body
bank*
String
The commercial bank that the business has a bank account with.
Please see this list of slugs for the available banks.
type*
String
This field determines the method that the end-user wants to make use of to provide transactions and bank statements. Currently we only support "statement" for business bank accounts.
business_id*
String
The UUID for a specific business that gets generated and returned in POST Create a Business without a Customer.
Banks Supported for Business Bank Statements
absa
capitec
discovery
fnb
investec
nedbank
rmb
standard-bank
API Responses
{
"data": {
"id": "{{bankAccountId}}"
"business_id": "{{businessId}}",
"type": "statement",
"bank": "standard-bank",
"num_transactions": 0,
"last_updated": "2023-05-24T14:19:21.000000Z",
"first_transaction": null,
"last_transaction": null
}
}{
"errors": {
"business_id": [
"The selected business id is invalid."
]
}
}{
"errors": {
"bank": [
"Provided bank is not valid. Please check list of supported banks."
]
}
}Last updated