Chilkat Online Tools

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

Back to Collection Items

var
http: HCkHttp;
success: Boolean;
json: HCkJsonObject;
resp: HCkHttpResponse;

begin
// 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.

// {
//   "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 := CkJsonObject_Create();
CkJsonObject_UpdateString(json,'account_name','{{acc_name}}');
CkJsonObject_UpdateString(json,'channel','CP');
CkJsonObject_UpdateString(json,'type','SALE');
CkJsonObject_UpdateString(json,'capture_mode','AUTO');
CkJsonObject_UpdateString(json,'amount','15');
CkJsonObject_UpdateString(json,'currency','USD');
CkJsonObject_UpdateString(json,'reference','25482851');
CkJsonObject_UpdateString(json,'country','US');
CkJsonObject_UpdateString(json,'payment_method.entry_mode','MANUAL');
CkJsonObject_UpdateString(json,'payment_method.card.number','4012001037141112');
CkJsonObject_UpdateString(json,'payment_method.card.expiry_month','12');
CkJsonObject_UpdateString(json,'payment_method.card.expiry_year','25');
CkJsonObject_UpdateString(json,'payment_method.card.cvv','456');

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

resp := CkHttp_PostJson3(http,'https://apis.sandbox.globalpay.com/ucp/transactions','application/json',json);
if (CkHttp_getLastMethodSuccess(http) = False) then
  begin
    Memo1.Lines.Add(CkHttp__lastErrorText(http));
    Exit;
  end;

Memo1.Lines.Add(IntToStr(CkHttpResponse_getStatusCode(resp)));
Memo1.Lines.Add(CkHttpResponse__bodyStr(resp));
CkHttpResponse_Dispose(resp);

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