unicodeC / Broker API / Bank 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.
// {
// "name": "Test Bank XYZ",
// "bank_code_type": "ABA",
// "bank_code": "123456789",
// "account_number": "123456789abc"
// }
json = CkJsonObjectW_Create();
CkJsonObjectW_UpdateString(json,L"name",L"Test Bank XYZ");
CkJsonObjectW_UpdateString(json,L"bank_code_type",L"ABA");
CkJsonObjectW_UpdateString(json,L"bank_code",L"123456789");
CkJsonObjectW_UpdateString(json,L"account_number",L"123456789abc");
resp = CkHttpW_PostJson3(http,L"https://domain.com/v1/accounts/:account_id/recipient_banks",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 '{
"name": "Test Bank XYZ",
"bank_code_type": "ABA",
"bank_code": "123456789",
"account_number": "123456789abc"
}'
https://domain.com/v1/accounts/:account_id/recipient_banks
Postman Collection Item JSON
{
"name": "Bank Relationship",
"request": {
"method": "POST",
"header": [
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"Test Bank XYZ\",\n \"bank_code_type\": \"ABA\",\n \"bank_code\": \"123456789\",\n \"account_number\": \"123456789abc\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{HOST}}/v1/accounts/:account_id/recipient_banks",
"host": [
"{{HOST}}"
],
"path": [
"v1",
"accounts",
":account_id",
"recipient_banks"
],
"variable": [
{
"key": "account_id",
"value": null
}
]
},
"description": "| Parameter | Type | Requirement | Notes |\n| -----------------|---------------------|-------------|:-----------------:|\n| `name` | string | Required | Name of recipient bank |\n| `bank_code_type` | enum.IdentifierType | Required | `ABA`(Domestic) or `BIC`(International) |\n| `bank_code` | string | Required | 9-Digit ABA RTN (Routing Number or BIC |\n| `country` | string | Required | Only for international banks |\n| `state_province` | string | Required | Only for international banks |\n| `postal_code` | string | Required | Only for international banks |\n| `city` | string | Required | Only for international banks |\n| street_address | string | Required | Only for international banks |\n| account_number | string | Required | |"
},
"response": [
]
}