Create Bank account for a Buyer
Overview
This route will create a new bank account for a requsted buyer.
Resource Access
POST https://<hostname>/buyer/v1/buyer/{id}/bank
Attributes
Fields | Mandatory / Optional |
---|---|
routingNumber | Mandatory |
accountNumber | Mandatory |
accountType | Mandatory |
defaults | Mandatory |
Example Request
POST https://<hostname>/buyer/v1/buyer/adcf5909-2afe-5078-a2db-525cc21a7981/bank
Host: <hostname>
Authorization: Bearer <JWT token>
Content-Type: application/json
{
"accountType": "savings",
"accountNumber": "7387878787878",
"routingNumber": "121000248",
"defaults": [
"ACH",
"VCN",
"CHK",
"MCK"
]
}
Example Response
200 OK
Updated 3 days ago