Chilkat Online Tools

Foxpro / GP-API Collection / AUT_1.2 3DS Obtain Result

Back to Collection Items

LOCAL loHttp
LOCAL lnSuccess
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')

* Adds the "Authorization: Bearer <access_token>" header.
loHttp.AuthToken = "<access_token>"
loHttp.SetRequestHeader("x-gp-version","{{version}}")

loResp = loHttp.QuickRequest("POST","https://{{url}}/ucp/authentications/{{aut_id}}/result")
IF (loHttp.LastMethodSuccess = 0) THEN
    ? loHttp.LastErrorText
    RELEASE loHttp
    CANCEL
ENDIF

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

RELEASE loHttp

Curl Command

curl -X POST
	-H "Authorization: Bearer <access_token>"
	-H "x-gp-version: {{version}}"
https://{{url}}/ucp/authentications/{{aut_id}}/result

Postman Collection Item JSON

{
  "name": "AUT_1.2 3DS Obtain Result",
  "event": [
    {
      "listen": "test",
      "script": {
        "exec": [
          "pm.environment.unset(\"aut_value\");\r",
          "pm.environment.unset(\"server_trans_ref\");\r",
          "pm.environment.unset(\"eci\");\r",
          "\r",
          "\r",
          "var jsonData = JSON.parse(responseBody);\r",
          "\r",
          "\r",
          "postman.setEnvironmentVariable(\"aut_value\", jsonData.three_ds.authentication_value);\r",
          "postman.setEnvironmentVariable(\"server_trans_ref\",  jsonData.three_ds.server_trans_ref);\r",
          "postman.setEnvironmentVariable(\"eci\", jsonData.three_ds.eci);"
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "auth": {
      "type": "oauth2",
      "oauth2": [
        {
          "key": "accessToken",
          "value": "{{token}}",
          "type": "string"
        },
        {
          "key": "addTokenTo",
          "value": "header",
          "type": "string"
        }
      ]
    },
    "method": "POST",
    "header": [
      {
        "key": "x-gp-version",
        "value": "{{version}}"
      }
    ],
    "url": {
      "raw": "https://{{url}}/ucp/authentications/{{aut_id}}/result",
      "protocol": "https",
      "host": [
        "{{url}}"
      ],
      "path": [
        "ucp",
        "authentications",
        "{{aut_id}}",
        "result"
      ]
    },
    "description": "This request is the final step before processing the authorization. It is to obtain the necessary authentication data from the Global Payments 3DS solution. \r\n\r\nThis is the data the ACS passed to Global Payments when the customer completed the challenge.\r\n\r\nThe most important information needed for the authorization is the authentication id that is returned in this request. This contains eci value which is needed for a 3DS auth.\r\n\r\nFor more information on Obtaining Result, please visit: https://developer.globalpay.com/api/3d-secure-two and https://developer.globalpay.com/api/authentications#/Get%20Result/get3DSResult"
  },
  "response": [
  ]
}