VBScript / Broker API / ACH Relationship
Back to Collection Items
Dim fso, outFile
Set fso = CreateObject("Scripting.FileSystemObject")
'Create a Unicode (utf-16) output text file.
Set outFile = fso.CreateTextFile("output.txt", True, True)
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.Http")
set http = CreateObject("Chilkat.Http")
http.BasicAuth = 1
http.Login = "{{api_key}}"
http.Password = "{{api_secret}}"
' Use this online tool to generate code from sample JSON: Generate Code to Create JSON
' The following JSON is sent in the request body.
' {
' "account_owner_name": "Christie Ruales",
' "bank_account_type": "CHECKING",
' "bank_account_number": "01020304abc",
' "bank_routing_number": "121000358",
' "nickname": "Bank of America Checking"
' }
' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.JsonObject")
set json = CreateObject("Chilkat.JsonObject")
success = json.UpdateString("account_owner_name","Christie Ruales")
success = json.UpdateString("bank_account_type","CHECKING")
success = json.UpdateString("bank_account_number","01020304abc")
success = json.UpdateString("bank_routing_number","121000358")
success = json.UpdateString("nickname","Bank of America Checking")
' resp is a Chilkat.HttpResponse
Set resp = http.PostJson3("https://domain.com/v1/accounts/:account_id/ach_relationships","application/json",json)
If (http.LastMethodSuccess = 0) Then
outFile.WriteLine(http.LastErrorText)
WScript.Quit
End If
outFile.WriteLine(resp.StatusCode)
outFile.WriteLine(resp.BodyStr)
outFile.Close
Curl Command
curl -X POST
-u '{{api_key}}:{{api_secret}}'
-d '{
"account_owner_name": "Christie Ruales",
"bank_account_type": "CHECKING",
"bank_account_number": "01020304abc",
"bank_routing_number": "121000358",
"nickname": "Bank of America Checking"
}'
https://domain.com/v1/accounts/:account_id/ach_relationships
Postman Collection Item JSON
{
"name": "ACH Relationship",
"request": {
"method": "POST",
"header": [
],
"body": {
"mode": "raw",
"raw": "{\n \"account_owner_name\": \"Christie Ruales\",\n \"bank_account_type\": \"CHECKING\",\n \"bank_account_number\": \"01020304abc\",\n \"bank_routing_number\": \"121000358\",\n \"nickname\": \"Bank of America Checking\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{HOST}}/v1/accounts/:account_id/ach_relationships",
"host": [
"{{HOST}}"
],
"path": [
"v1",
"accounts",
":account_id",
"ach_relationships"
],
"variable": [
{
"key": "account_id",
"value": null
}
]
},
"description": "| Parameter | Type | Requirement | Notes |\n| ----------------------|--------|-------------|:-----------------:|\n| `account_owner_name` | string | Required | |\n| `bank_account_type` | string | Required | Must be `CHECKINGS` or `SAVINGS` |\n| `bank_account_number` | string | Required | In sandbox, this must be valid format |\n| `bank_routing_number` | string | Required | In sandbox, this must be valid format |\n| `nickname` | string | Optional | |"
},
"response": [
]
}