Chilkat Online Tools

Foxpro / GP-API Collection / TRA_4.5 ReAuth

Back to Collection Items

LOCAL loHttp
LOCAL lnSuccess
LOCAL loJson
LOCAL loResp

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

loHttp = CreateObject('Chilkat_9_5_0.Http')

* Use this online tool to generate code from sample JSON: Generate Code to Create JSON

* The following JSON is sent in the request body.

* {
*   "amount": "99"
* }

loJson = CreateObject('Chilkat_9_5_0.JsonObject')
loJson.UpdateString("amount","99")

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

loResp = loHttp.PostJson3("https://{{url}}/ucp/transactions/{{trn_id}}/reauthorization","application/json",loJson)
IF (loHttp.LastMethodSuccess = 0) THEN
    ? loHttp.LastErrorText
    RELEASE loHttp
    RELEASE loJson
    CANCEL
ENDIF

? STR(loResp.StatusCode)
? loResp.BodyStr
RELEASE loResp

RELEASE loHttp
RELEASE loJson

Curl Command

curl -X POST
	-H "Content-Type: application/json"
	-H "Authorization: Bearer {{token}}"
	-H "Accept: application/json"
	-H "X-GP-Version: {{version}}"
	-d '{
    "amount": "99"
}'
https://{{url}}/ucp/transactions/{{trn_id}}/reauthorization

Postman Collection Item JSON

{
  "name": "TRA_4.5 ReAuth",
  "event": [
    {
      "listen": "test",
      "script": {
        "exec": [
          "pm.test(\"Successful POST request\", function () {\r",
          "    pm.expect(pm.response.code).to.be.oneOf([400]);\r",
          "});\r",
          "\r",
          "pm.test(\"Status code name has string\", function () {\r",
          "    pm.response.to.have.status(\"Bad Request\");\r",
          "});\r",
          "\r",
          "\r",
          "tests[\"Response time is acceptable\"] = _.inRange(responseTime, 100, 1500); \r",
          "\r",
          "pm.test(\"Body matches string\", function () {\r",
          "    pm.expect(pm.response.text()).to.include(\"40010\");\r",
          "});"
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/json",
        "disabled": true
      },
      {
        "key": "Authorization",
        "value": "Bearer {{token}}"
      },
      {
        "key": "Accept",
        "value": "application/json"
      },
      {
        "key": "X-GP-Version",
        "type": "text",
        "value": "{{version}}"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\r\n    \"amount\": \"99\"\r\n}"
    },
    "url": {
      "raw": "https://{{url}}/ucp/transactions/{{trn_id}}/reauthorization",
      "protocol": "https",
      "host": [
        "{{url}}"
      ],
      "path": [
        "ucp",
        "transactions",
        "{{trn_id}}",
        "reauthorization"
      ]
    },
    "description": "Must do:\r\n1. A CP Transaction\r\n2. Reverse this Transaction. \r\n3. Do a reauth for this transaction, either with the amount less than the original amount or no amount change at all\r\n\r\nFor more info on reauth's, please visit: https://developer.globalpay.com/api/transactions#/ReAuth%20a%20Reversed%20Sale/reauthSaleTransaction"
  },
  "response": [
  ]
}