Chilkat Online Tools

PowerBuilder / PaymentsOS Testing with Mock Provider / 5. GET Void

Back to Collection Items

integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_SbResponseBody

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

loo_Http = create oleobject
li_rc = loo_Http.ConnectToNewObject("Chilkat_9_5_0.Http")
if li_rc < 0 then
    destroy loo_Http
    MessageBox("Error","Connecting to COM object failed")
    return
end if

loo_Http.SetRequestHeader("x-payments-os-env","{{x-payments-os-env}}")
loo_Http.SetRequestHeader("Content-Type","application/json")
loo_Http.SetRequestHeader("app_id","{{app_id}}")
loo_Http.SetRequestHeader("private_key","{{private_key}}")
loo_Http.SetRequestHeader("idempotency_key","{{$randomInt}}")
loo_Http.SetRequestHeader("api-version","1.3.0")

loo_SbResponseBody = create oleobject
li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat_9_5_0.StringBuilder")

li_Success = loo_Http.QuickGetSb("https://api.paymentsos.com/payments/{{paymentid}}/voids/{{voidid}}",loo_SbResponseBody)
if li_Success = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_SbResponseBody
    return
end if

Write-Debug "Response status code = " + string(loo_Http.LastStatus)
Write-Debug loo_SbResponseBody.GetAsString()


destroy loo_Http
destroy loo_SbResponseBody

Curl Command

curl -X GET
	-H "app_id: {{app_id}}"
	-H "private_key: {{private_key}}"
	-H "Content-Type: application/json"
	-H "api-version: 1.3.0"
	-H "x-payments-os-env: {{x-payments-os-env}}"
	-H "idempotency_key: {{$randomInt}}"
https://api.paymentsos.com/payments/{{paymentid}}/voids/{{voidid}}

Postman Collection Item JSON

{
  "name": "5. GET Void",
  "event": [
    {
      "listen": "test",
      "script": {
        "type": "text/javascript",
        "exec": [
          "var jsonData = JSON.parse(responseBody);",
          "postman.setEnvironmentVariable(\"authorizationid\", jsonData.id);"
        ]
      }
    }
  ],
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "app_id",
        "value": "{{app_id}}"
      },
      {
        "key": "private_key",
        "value": "{{private_key}}"
      },
      {
        "key": "Content-Type",
        "value": "application/json"
      },
      {
        "key": "api-version",
        "value": "1.3.0"
      },
      {
        "key": "x-payments-os-env",
        "value": "{{x-payments-os-env}}"
      },
      {
        "key": "idempotency_key",
        "value": "{{$randomInt}}"
      }
    ],
    "url": {
      "raw": "https://api.paymentsos.com/payments/{{paymentid}}/voids/{{voidid}}",
      "protocol": "https",
      "host": [
        "api",
        "paymentsos",
        "com"
      ],
      "path": [
        "payments",
        "{{paymentid}}",
        "voids",
        "{{voidid}}"
      ]
    },
    "description": "Create a new authorization"
  },
  "response": [
  ]
}