Chilkat Online Tools

Node.js / GP-API Collection / TRA_13.3 Google Pay Encrypted

Back to Collection Items

var os = require('os');
if (os.platform() == 'win32') {  
    if (os.arch() == 'ia32') {
        var chilkat = require('@chilkat/ck-node21-win-ia32');
    } else {
        var chilkat = require('@chilkat/ck-node21-win64'); 
    }
} else if (os.platform() == 'linux') {
    if (os.arch() == 'arm') {
        var chilkat = require('@chilkat/ck-node21-arm');
    } else if (os.arch() == 'x86') {
        var chilkat = require('@chilkat/ck-node21-linux32');
    } else {
        var chilkat = require('@chilkat/ck-node21-linux64');
    }
} else if (os.platform() == 'darwin') {
    if (os.arch() == 'arm64') {
        var chilkat = require('@chilkat/ck-node21-mac-m1');
    } else {
        var chilkat = require('@chilkat/ck-node21-macosx');
    }
}


function chilkatExample() {

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

    var http = new chilkat.Http();
    var success;

    // 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": "CNP",
    //   "type": "SALE",
    //   "amount": "1000",
    //   "currency": "EUR",
    //   "reference": "{{reference}}",
    //   "order_reference": "{{reference}}",
    //   "country": "US",
    //   "initiator": "PAYER",
    //   "stored_credential": {
    //     "model": "UNSCHEDULED",
    //     "reason": "",
    //     "sequence": "SUBSEQUENT"
    //   },
    //   "payment_method": {
    //     "name": "James Mason",
    //     "entry_mode": "ECOM",
    //     "digital_wallet": {
    //       "provider": "PAY_BY_GOOGLE",
    //       "payment_token": {
    //         "signature": "ENTER PAYMENT TOKEN INFO HERE",
    //         "protocolVersion": "ENTER PAYMENT TOKEN INFO HERE",
    //         "signedMessage": "ENTER PAYMENT TOKEN INFO HERE"
    //       }
    //     }
    //   }
    // }

    var json = new chilkat.JsonObject();
    json.UpdateString("account_name","{{acc_name}}");
    json.UpdateString("channel","CNP");
    json.UpdateString("type","SALE");
    json.UpdateString("amount","1000");
    json.UpdateString("currency","EUR");
    json.UpdateString("reference","{{reference}}");
    json.UpdateString("order_reference","{{reference}}");
    json.UpdateString("country","US");
    json.UpdateString("initiator","PAYER");
    json.UpdateString("stored_credential.model","UNSCHEDULED");
    json.UpdateString("stored_credential.reason","");
    json.UpdateString("stored_credential.sequence","SUBSEQUENT");
    json.UpdateString("payment_method.name","James Mason");
    json.UpdateString("payment_method.entry_mode","ECOM");
    json.UpdateString("payment_method.digital_wallet.provider","PAY_BY_GOOGLE");
    json.UpdateString("payment_method.digital_wallet.payment_token.signature","ENTER PAYMENT TOKEN INFO HERE");
    json.UpdateString("payment_method.digital_wallet.payment_token.protocolVersion","ENTER PAYMENT TOKEN INFO HERE");
    json.UpdateString("payment_method.digital_wallet.payment_token.signedMessage","ENTER PAYMENT TOKEN INFO HERE");

    http.SetRequestHeader("Content-Type","application/json");
    http.SetRequestHeader("X-GP-Version","{{version}}");
    // Adds the "Authorization: Bearer {{token}}" header.
    http.AuthToken = "{{token}}";
    http.SetRequestHeader("Accept","application/json");

    // resp: HttpResponse
    var resp = http.PostJson3("https://{{url}}/ucp/transactions","application/json",json);
    if (http.LastMethodSuccess == false) {
        console.log(http.LastErrorText);
        return;
    }

    console.log(resp.StatusCode);
    console.log(resp.BodyStr);


}

chilkatExample();

Curl Command

curl -X POST
	-H "Content-Type: application/json"
	-H "Authorization: Bearer {{token}}"
	-H "Accept: application/json"
	-H "X-GP-Version: {{version}}"
	-d '{
    "account_name": "{{acc_name}}",
    "channel": "CNP",
    "type": "SALE",
    "amount": "1000",
    "currency": "EUR",
    "reference": "{{reference}}",
    "order_reference": "{{reference}}",
    "country": "US",
    "initiator": "PAYER",
    "stored_credential": {
        "model": "UNSCHEDULED",
        "reason": "",
        "sequence": "SUBSEQUENT"
    },
    "payment_method": {
        "name": "James Mason",
        "entry_mode": "ECOM",
        "digital_wallet": {
            "provider": "PAY_BY_GOOGLE",
            "payment_token": {
                "signature": "ENTER PAYMENT TOKEN INFO HERE",
                "protocolVersion": "ENTER PAYMENT TOKEN INFO HERE",
                "signedMessage": "ENTER PAYMENT TOKEN INFO HERE"
            }
        }
    }
}'
https://{{url}}/ucp/transactions

Postman Collection Item JSON

{
  "name": "TRA_13.3 Google Pay Encrypted",
  "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": "{{version}}"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"account_name\": \"{{acc_name}}\",\n    \"channel\": \"CNP\",\n    \"type\": \"SALE\",\n    \"amount\": \"1000\",\n    \"currency\": \"EUR\",\n    \"reference\": \"{{reference}}\",\n    \"order_reference\": \"{{reference}}\",\n    \"country\": \"US\",\n    \"initiator\": \"PAYER\",\n    \"stored_credential\": {\n        \"model\": \"UNSCHEDULED\",\n        \"reason\": \"\",\n        \"sequence\": \"SUBSEQUENT\"\n    },\n    \"payment_method\": {\n        \"name\": \"James Mason\",\n        \"entry_mode\": \"ECOM\",\n        \"digital_wallet\": {\n            \"provider\": \"PAY_BY_GOOGLE\",\n            \"payment_token\": {\n                \"signature\": \"ENTER PAYMENT TOKEN INFO HERE\",\n                \"protocolVersion\": \"ENTER PAYMENT TOKEN INFO HERE\",\n                \"signedMessage\": \"ENTER PAYMENT TOKEN INFO HERE\"\n            }\n        }\n    }\n}"
    },
    "url": {
      "raw": "https://{{url}}/ucp/transactions",
      "protocol": "https",
      "host": [
        "{{url}}"
      ],
      "path": [
        "ucp",
        "transactions"
      ]
    },
    "description": "For this Encrypted Google Pay request, you must get your own payment token first and then insert the corresponding details below in body of request.\r\n\r\n\r\nFor more details on Google Pay, please visit: https://developer.globalpay.com/ecommerce/digital-wallets#google-pay"
  },
  "response": [
  ]
}