Chilkat Online Tools

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

Back to Collection Items

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.

set http = Server.CreateObject("Chilkat_9_5_0.Http")

' Adds the "Authorization: Bearer <access_token>" header.
http.AuthToken = "<access_token>"
http.SetRequestHeader "x-gp-version","{{version}}"

' resp is a Chilkat_9_5_0.HttpResponse
Set resp = http.QuickRequest("POST","https://{{url}}/ucp/authentications/{{aut_id}}/result")
If (http.LastMethodSuccess = 0) Then
    Response.Write "<pre>" & Server.HTMLEncode( http.LastErrorText) & "</pre>"
    Response.End
End If

Response.Write "<pre>" & Server.HTMLEncode( resp.StatusCode) & "</pre>"
Response.Write "<pre>" & Server.HTMLEncode( resp.BodyStr) & "</pre>"


%>
</body>
</html>

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