Chilkat Online Tools

unicodeC / Broker API / ACH Relationship

Back to Collection Items

#include <C_CkHttpW.h>
#include <C_CkJsonObjectW.h>
#include <C_CkHttpResponseW.h>

void ChilkatSample(void)
    {
    HCkHttpW http;
    BOOL success;
    HCkJsonObjectW json;
    HCkHttpResponseW resp;

    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    http = CkHttpW_Create();

    CkHttpW_putBasicAuth(http,TRUE);
    CkHttpW_putLogin(http,L"{{api_key}}");
    CkHttpW_putPassword(http,L"{{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"
    // }

    json = CkJsonObjectW_Create();
    CkJsonObjectW_UpdateString(json,L"account_owner_name",L"Christie Ruales");
    CkJsonObjectW_UpdateString(json,L"bank_account_type",L"CHECKING");
    CkJsonObjectW_UpdateString(json,L"bank_account_number",L"01020304abc");
    CkJsonObjectW_UpdateString(json,L"bank_routing_number",L"121000358");
    CkJsonObjectW_UpdateString(json,L"nickname",L"Bank of America Checking");

    resp = CkHttpW_PostJson3(http,L"https://domain.com/v1/accounts/:account_id/ach_relationships",L"application/json",json);
    if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
        wprintf(L"%s\n",CkHttpW_lastErrorText(http));
        CkHttpW_Dispose(http);
        CkJsonObjectW_Dispose(json);
        return;
    }

    wprintf(L"%d\n",CkHttpResponseW_getStatusCode(resp));
    wprintf(L"%s\n",CkHttpResponseW_bodyStr(resp));
    CkHttpResponseW_Dispose(resp);


    CkHttpW_Dispose(http);
    CkJsonObjectW_Dispose(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": [
  ]
}