Create funding source for an account
POST {{baseUrl}}/funding-sources
Create a new Funding Source for a Customer. Customers can have a maximum of 6 funding sources.
Request parameters
Parameter | Data Type | Parameter Type | Required | Description |
---|---|---|---|---|
_links | object | body | no | A _links JSON object describing the desired external party or treasury account relation. |
routingNumber | string | body | yes | The bank account's routing number. |
accountNumber | string | body | yes | The bank account number. |
bankAccountType | string | body | yes | Type of bank account: checking or savings . |
name | string | body | yes | Arbitrary nickname for the funding source. |
Request Body
{"_links"=>{"treasury-account"=>{"href"=>"{{baseUrl}}/treasury-accounts/{{treasuryAccountId}}"}}, "name"=>"My Test Bank", "bankAccountType"=>"checking", "accountNumber"=>"0945958726", "routingNumber"=>"021000021"}
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Content-Type | string | ||
Accept | string |
RESPONSES
status: Created
""