TCL / Broker API / ACH Relationship
Back to Collection Items
load ./chilkat.dll
# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
set http [new_CkHttp]
CkHttp_put_BasicAuth $http 1
CkHttp_put_Login $http "{{api_key}}"
CkHttp_put_Password $http "{{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"
# }
set json [new_CkJsonObject]
CkJsonObject_UpdateString $json "account_owner_name" "Christie Ruales"
CkJsonObject_UpdateString $json "bank_account_type" "CHECKING"
CkJsonObject_UpdateString $json "bank_account_number" "01020304abc"
CkJsonObject_UpdateString $json "bank_routing_number" "121000358"
CkJsonObject_UpdateString $json "nickname" "Bank of America Checking"
# resp is a CkHttpResponse
set resp [CkHttp_PostJson3 $http "https://domain.com/v1/accounts/:account_id/ach_relationships" "application/json" $json]
if {[CkHttp_get_LastMethodSuccess $http] == 0} then {
puts [CkHttp_lastErrorText $http]
delete_CkHttp $http
delete_CkJsonObject $json
exit
}
puts [CkHttpResponse_get_StatusCode $resp]
puts [CkHttpResponse_bodyStr $resp]
delete_CkHttpResponse $resp
delete_CkHttp $http
delete_CkJsonObject $json
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": [
]
}