Chilkat Online Tools

VB.NET / GP-API Collection / TKA_2.8 Single to Multi Use Token

Back to Collection Items

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

Dim http As New Chilkat.Http
Dim success As Boolean

' 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",
'   "capture_mode": "AUTO",
'   "type": "SALE",
'   "amount": "100",
'   "currency": "USD",
'   "reference": "45467761",
'   "country": "US",
'   "payment_method": {
'     "name": "Jane",
'     "entry_mode": "ECOM",
'     "id": "PMT_96959619-5ef6-41b1-bfeb-fc13c4b2b359",
'     "storage_model": "ALWAYS"
'   }
' }

Dim json As New Chilkat.JsonObject
json.UpdateString("account_name","{{acc_name}}")
json.UpdateString("channel","CNP")
json.UpdateString("capture_mode","AUTO")
json.UpdateString("type","SALE")
json.UpdateString("amount","100")
json.UpdateString("currency","USD")
json.UpdateString("reference","45467761")
json.UpdateString("country","US")
json.UpdateString("payment_method.name","Jane")
json.UpdateString("payment_method.entry_mode","ECOM")
json.UpdateString("payment_method.id","PMT_96959619-5ef6-41b1-bfeb-fc13c4b2b359")
json.UpdateString("payment_method.storage_model","ALWAYS")

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

Dim resp As Chilkat.HttpResponse = http.PostJson3("https://apis.sandbox.globalpay.com/ucp/transactions","application/json",json)
If (http.LastMethodSuccess = False) Then
    Debug.WriteLine(http.LastErrorText)
    Exit Sub
End If


Debug.WriteLine(resp.StatusCode)
Debug.WriteLine(resp.BodyStr)

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": "CNP",
    "capture_mode":"AUTO",
    "type": "SALE",
    "amount": "100",
    "currency": "USD",
    "reference": "45467761",
    "country": "US",
    "payment_method": {
        "name": "Jane",
        "entry_mode": "ECOM",
        "id": "PMT_96959619-5ef6-41b1-bfeb-fc13c4b2b359",
        "storage_model": "ALWAYS"
    }
}'
https://apis.sandbox.globalpay.com/ucp/transactions

Postman Collection Item JSON

{
  "name": "TKA_2.8 Single to Multi Use Token",
  "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    \"account_name\": \"{{acc_name}}\",\n    \"channel\": \"CNP\",\n    \"capture_mode\":\"AUTO\",\n    \"type\": \"SALE\",\n    \"amount\": \"100\",\n    \"currency\": \"USD\",\n    \"reference\": \"45467761\",\n    \"country\": \"US\",\n    \"payment_method\": {\n        \"name\": \"Jane\",\n        \"entry_mode\": \"ECOM\",\n        \"id\": \"PMT_96959619-5ef6-41b1-bfeb-fc13c4b2b359\",\n        \"storage_model\": \"ALWAYS\"\n    }\n}"
    },
    "url": {
      "raw": "https://apis.sandbox.globalpay.com/ucp/transactions",
      "protocol": "https",
      "host": [
        "apis",
        "sandbox",
        "globalpay",
        "com"
      ],
      "path": [
        "ucp",
        "transactions"
      ]
    }
  },
  "response": [
  ]
}