Appearance
!--methodPOST--!/storeCustomerBankAccount ā
Set the customer's banking information that will automatically be sent along during Submit Application
Broker APIPersonal LoanAuto Loan
WARNING
Note: Only debit bank accounts are eligible to be sent during Submit Application
š Authentication ā
- Bearer Token - Your API token
š Content-Type ā
| Request | application/json |
| Response | application/json |
š¦ Request Body ā
customer_id RequiredCustomer's ID
numberaccount_name Required
stringmax: 30bsb_number RequiredMust be 6 digits
E.g.
string | numberE.g.
012345account_number Required
numberis_debit_account Required
0 | 11 if debit account, 0 otherwiseis_credit_account Required
0 | 11 if credit account, 0 otherwiseā¹ļø Examples ā
Request
json
{
"customer_id": "529193",
"account_name": "Test",
"bsb_number": "067104",
"account_number": "102222221",
"is_debit_account": 1,
"is_credit_account": 1
}Response
json
{
"status": "success",
"message": ""
}json
{
"message": "Unauthenticated."
}json
{
"message": "The bsb number field must have at least 6 digits.",
"errors": {
"bsb_number": [
"The bsb number field must have at least 6 digits."
]
}
}