Chilkat Online Tools

C / Bond APIs / create transfer

Back to Collection Items

#include <C_CkHttp.h>
#include <C_CkJsonObject.h>
#include <C_CkHttpResponse.h>

void ChilkatSample(void)
    {
    HCkHttp http;
    BOOL success;
    HCkJsonObject json;
    HCkHttpResponse resp;

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

    http = CkHttp_Create();

    // Use this online tool to generate code from sample JSON: Generate Code to Create JSON

    // The following JSON is sent in the request body.

    // {
    //   "origination_account_id": "",
    //   "account_id": "",
    //   "type": "ach",
    //   "ach_class_code": "CCD",
    //   "ach_direction": "debit",
    //   "amount": "1.00"
    // }

    json = CkJsonObject_Create();
    CkJsonObject_UpdateString(json,"origination_account_id","");
    CkJsonObject_UpdateString(json,"account_id","");
    CkJsonObject_UpdateString(json,"type","ach");
    CkJsonObject_UpdateString(json,"ach_class_code","CCD");
    CkJsonObject_UpdateString(json,"ach_direction","debit");
    CkJsonObject_UpdateString(json,"amount","1.00");

    CkHttp_SetRequestHeader(http,"Content-Type","application/json");
    CkHttp_SetRequestHeader(http,"Authorization","{{authorization}}");
    CkHttp_SetRequestHeader(http,"Identity","{{identity}}");

    resp = CkHttp_PostJson3(http,"https://{{environment}}.bond.tech/api/v0/transfers","application/json",json);
    if (CkHttp_getLastMethodSuccess(http) == FALSE) {
        printf("%s\n",CkHttp_lastErrorText(http));
        CkHttp_Dispose(http);
        CkJsonObject_Dispose(json);
        return;
    }

    printf("%d\n",CkHttpResponse_getStatusCode(resp));
    printf("%s\n",CkHttpResponse_bodyStr(resp));
    CkHttpResponse_Dispose(resp);


    CkHttp_Dispose(http);
    CkJsonObject_Dispose(json);

    }

Curl Command

curl -X POST
	-H "Content-Type: application/json"
	-H "Authorization: {{authorization}}"
	-H "Identity: {{identity}}"
	-d '{
    "origination_account_id": "",
    "account_id": "",
    "type": "ach",
    "ach_class_code": "CCD",
    "ach_direction": "debit",
    "amount": "1.00"
}'
https://{{environment}}.bond.tech/api/v0/transfers

Postman Collection Item JSON

{
  "name": "create transfer",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "type": "text",
        "value": "application/json"
      },
      {
        "key": "Authorization",
        "type": "text",
        "value": "{{authorization}}"
      },
      {
        "key": "Identity",
        "type": "text",
        "value": "{{identity}}"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"origination_account_id\": \"\",\n    \"account_id\": \"\",\n    \"type\": \"ach\",\n    \"ach_class_code\": \"CCD\",\n    \"ach_direction\": \"debit\",\n    \"amount\": \"1.00\"\n}"
    },
    "url": {
      "raw": "https://{{environment}}.bond.tech/api/v0/transfers",
      "protocol": "https",
      "host": [
        "{{environment}}",
        "bond",
        "tech"
      ],
      "path": [
        "api",
        "v0",
        "transfers"
      ]
    },
    "description": "Add Card financial Core"
  },
  "response": [
    {
      "name": "ach",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "name": "Content-Type",
            "value": "application/json",
            "type": "text"
          },
          {
            "key": "Authorization",
            "type": "text",
            "value": "{{authorization}}"
          },
          {
            "key": "Identity",
            "type": "text",
            "value": "{{identity}}"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"origination_account_id\": \"49483eb9-1404-4fe9-aa9b-80e014cdc393\",\n    \"account_id\": \"092c2e63-6141-4f29-8aa3-93881dc97483\",\n    \"type\": \"ach\",\n    \"ach_class_code\": \"CCD\",\n    \"ach_direction\": \"debit\",\n    \"amount\": \"1.00\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "https://sandbox.bond.tech/api/v0/transfers/:transfer_id",
          "protocol": "https",
          "host": [
            "sandbox",
            "bond",
            "tech"
          ],
          "path": [
            "api",
            "v0",
            "transfers",
            ":transfer_id"
          ],
          "variable": [
            {
              "key": "transfer_id",
              "value": ""
            }
          ]
        }
      },
      "_postman_previewlanguage": null,
      "header": null,
      "cookie": [
      ],
      "body": null
    },
    {
      "name": "card-to-card",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "name": "Content-Type",
            "value": "application/json",
            "type": "text"
          },
          {
            "key": "Authorization",
            "type": "text",
            "value": "{{authorization}}"
          },
          {
            "key": "Identity",
            "type": "text",
            "value": "{{identity}}"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"origination_account_id\": \"49483eb9-1404-4fe9-aa9b-80e014cdc393\",\n    \"account_id\": \"092c2e63-6141-4f29-8aa3-93881dc97483\",\n    \"type\": \"card-to-card\",\n    \"amount\": \"1.00\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "https://sandbox.bond.tech/api/v0/transfers/:transfer_id",
          "protocol": "https",
          "host": [
            "sandbox",
            "bond",
            "tech"
          ],
          "path": [
            "api",
            "v0",
            "transfers",
            ":transfer_id"
          ],
          "variable": [
            {
              "key": "transfer_id",
              "value": ""
            }
          ]
        }
      },
      "_postman_previewlanguage": null,
      "header": null,
      "cookie": [
      ],
      "body": null
    }
  ]
}