v1
latestOpenAPI 3.0.12026-07-24310590875.6 KBCreate a vendor bank account
Create a vendor bank account for an existing vendor.
To update vendor bank account information, you must first delete the existing vendor bank account (with DELETE /v3/vendors/{vendorId}/bank-account), and then create a new vendor bank account (with POST /v3/vendors/{vendorId}/bank-account) with the updated information.
Note: When you add a vendor bank account in the production environment, BILL requires 2 business days to complete a one-time verification of the bank account. To pay such a vendor, you must set a processDate that is 2 business days from the current date.
Path parameters
BILL-generated ID of the vendor. The value begins with 009.
Headers
API session ID generated with /v3/login
Developer key generated with your BILL developer account
Request body
Example request
{
"nameOnAccount": "Bill Vendorson",
"accountNumber": "111222333",
"routingNumber": "074000010",
"type": "CHECKING",
"ownerType": "BUSINESS",
"paymentCurrency": "USD"
}Response
Create a vendor bank account response
Example response
{
"nameOnAccount": "Bill Vendorson",
"accountNumber": "111222333",
"routingNumber": "074000010",
"type": "CHECKING",
"ownerType": "BUSINESS",
"paymentCurrency": "USD"
}