Chilkat Online Tools

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

$oHttp = ObjCreate("Chilkat_9_5_0.Http")
Local $bSuccess

; 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"
;   }
; }

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

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

Local $oResp = $oHttp.PostJson3("https://apis.sandbox.globalpay.com/ucp/transactions","application/json",$oJson)
If ($oHttp.LastMethodSuccess = False) Then
    ConsoleWrite($oHttp.LastErrorText & @CRLF)
    Exit
EndIf

ConsoleWrite($oResp.StatusCode & @CRLF)
ConsoleWrite($oResp.BodyStr & @CRLF)

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": [
  ]
}