Create a contractor bank account

POST {{baseUrl}}/v1/contractors/:contractor_uuid/bank_accounts

Creates a contractor bank account.

Note: We currently only support one bank account per contractor. Using this endpoint on a contractor who already has a bank account will just replace it.

scope: contractor_payment_methods:write

Request Body

{"name"=>"<string>", "routing_number"=>"<string>", "account_number"=>"<string>", "account_type"=>"<string>"}

HEADERS

KeyDatatypeRequiredDescription
X-Gusto-API-VersionstringDetermines the date-based API version associated with your API call. If none is provided, your application's minimum API version is used.
Content-Typestring
Acceptstring

RESPONSES

status: Created

{&quot;uuid&quot;:&quot;1531e824-8d9e-4bd8-9f90-0d04608125d7&quot;,&quot;contractor_uuid&quot;:&quot;9fcf1b1d-8886-4691-9283-383d3bdd4fd9&quot;,&quot;name&quot;:&quot;BoA Checking Account&quot;,&quot;routing_number&quot;:&quot;266905059&quot;,&quot;hidden_account_number&quot;:&quot;XXXX1207&quot;,&quot;account_type&quot;:&quot;Checking&quot;}