Bank Account Object v2
Path Parameters
HTTP Header
api-key status:REQUIRED
string - Your Accelerate API Key
URL Substitution
subdomain status:Required
string - Your Accelerate subdomain
relationship ID status:REQUIRED
integer - ID of your chosen relationship
bank account ID status:optional
integer - ID of your chosen bank account
Bank Account Requests status:GEt status:Post status:put
status:Get status:Post - Retrieve a bank account from a relationship or insert a new bank account into a relationship
https://{{subdomain}}.quotevineapp.com/qvine/quotevine/api/v2/relationships/{id}/bank-accounts/
Example Payload status:POSt
{
"bank_account_type": "Current account",
"bank_name": "LLOYDS BANK PLC",
"account_name": "Joe Bloggs",
"sort_code": "775008",
"account_number": "00000000",
"address_line_1": "PO BOX 1000",
"town_city": "Birmingham",
"postcode": "BX1 1LT"
}
Response
status:200
Returned if the request is successful.
status:400
Returned if the request sent is invalid.
status:404
Returned if the request is not found or the user does not have permission to view it.
status:Put - Update an existing bank account on a relationship
https://{{subdomain}}.quotevineapp.com/qvine/quotevine/api/v2/relationships/{id}/bank-accounts/{id}/
Example Payload status:PUT
{
"bank_account_type": "Other account",
"bank_name": "LLOYDS BANK PLC",
"account_name": "Joe Bloggs",
"sort_code": "775008",
"account_number": "00000000",
"town_city": "Birmingham",
"postcode": "BX5 5LT"
}
Response
status:200
Returned if the request is successful.
status:400
Returned if the request sent is invalid.
status:404
Returned if the request is not found or the user does not have permission to view it.
Bank Account Attributes
When updating/adding a new Bank Account via the API, there are a number of fields needed.
Mandatory Fields
bank_account_type - string
Must be either Current Account or Other Account
bank_name- string
account_name - string
sort_code - string
account_number - string
town_city - string
postcode - string