Chilkat Online Tools

unicodeC / GP-API Collection / TRA_9.0 Transaction returns Batch ID

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();

    // 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_name": "{{acc_name}}",
    //   "channel": "CP",
    //   "type": "SALE",
    //   "capture_mode": "AUTO",
    //   "amount": "15",
    //   "currency": "USD",
    //   "reference": "25482851",
    //   "country": "US",
    //   "payment_method": {
    //     "entry_mode": "MANUAL",
    //     "card": {
    //       "number": "4012001037141112",
    //       "expiry_month": "12",
    //       "expiry_year": "25",
    //       "cvv": "456"
    //     }
    //   }
    // }

    json = CkJsonObjectW_Create();
    CkJsonObjectW_UpdateString(json,L"account_name",L"{{acc_name}}");
    CkJsonObjectW_UpdateString(json,L"channel",L"CP");
    CkJsonObjectW_UpdateString(json,L"type",L"SALE");
    CkJsonObjectW_UpdateString(json,L"capture_mode",L"AUTO");
    CkJsonObjectW_UpdateString(json,L"amount",L"15");
    CkJsonObjectW_UpdateString(json,L"currency",L"USD");
    CkJsonObjectW_UpdateString(json,L"reference",L"25482851");
    CkJsonObjectW_UpdateString(json,L"country",L"US");
    CkJsonObjectW_UpdateString(json,L"payment_method.entry_mode",L"MANUAL");
    CkJsonObjectW_UpdateString(json,L"payment_method.card.number",L"4012001037141112");
    CkJsonObjectW_UpdateString(json,L"payment_method.card.expiry_month",L"12");
    CkJsonObjectW_UpdateString(json,L"payment_method.card.expiry_year",L"25");
    CkJsonObjectW_UpdateString(json,L"payment_method.card.cvv",L"456");

    CkHttpW_SetRequestHeader(http,L"Content-Type",L"application/json");
    CkHttpW_SetRequestHeader(http,L"X-GP-Version",L"2020-12-22");
    // Adds the "Authorization: Bearer {{token}}" header.
    CkHttpW_putAuthToken(http,L"{{token}}");
    CkHttpW_SetRequestHeader(http,L"Accept",L"application/json");

    resp = CkHttpW_PostJson3(http,L"https://apis.sandbox.globalpay.com/ucp/transactions",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
	-H "Content-Type: application/json"
	-H "Authorization: Bearer {{token}}"
	-H "Accept: application/json"
	-H "X-GP-Version: 2020-12-22"
	-d '{
    "account_name": "{{acc_name}}",
    "channel": "CP",
    "type": "SALE",
    "capture_mode": "AUTO",
    "amount": "15",
    "currency": "USD",
    "reference": "25482851",
    "country":"US",
    "payment_method": {
       
       "entry_mode" : "MANUAL",
       "card": {
        "number": "4012001037141112",
        "expiry_month": "12",
        "expiry_year": "25",
        "cvv": "456"
    }
    }
}'
https://apis.sandbox.globalpay.com/ucp/transactions

Postman Collection Item JSON

{
  "name": "TRA_9.0 Transaction returns Batch ID",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/json"
      },
      {
        "key": "Authorization",
        "value": "Bearer {{token}}"
      },
      {
        "key": "Accept",
        "value": "application/json"
      },
      {
        "key": "X-GP-Version",
        "value": "2020-12-22"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "\n{\n    \"account_name\": \"{{acc_name}}\",\n    \"channel\": \"CP\",\n    \"type\": \"SALE\",\n    \"capture_mode\": \"AUTO\",\n    \"amount\": \"15\",\n    \"currency\": \"USD\",\n    \"reference\": \"25482851\",\n    \"country\":\"US\",\n    \"payment_method\": {\n       \n       \"entry_mode\" : \"MANUAL\",\n       \"card\": {\n        \"number\": \"4012001037141112\",\n        \"expiry_month\": \"12\",\n        \"expiry_year\": \"25\",\n        \"cvv\": \"456\"\n    }\n    }\n}\n"
    },
    "url": {
      "raw": "https://apis.sandbox.globalpay.com/ucp/transactions",
      "protocol": "https",
      "host": [
        "apis",
        "sandbox",
        "globalpay",
        "com"
      ],
      "path": [
        "ucp",
        "transactions"
      ]
    },
    "description": "This request creates a transaction that returns a batch id."
  },
  "response": [
  ]
}