Chilkat Online Tools

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

Back to Collection Items

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

Chilkat.Http http = new Chilkat.Http();
bool success;

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

Chilkat.HttpResponse resp = http.QuickRequest("POST","https://{{url}}/ucp/authentications/{{aut_id}}/result");
if (http.LastMethodSuccess == false) {
    Debug.WriteLine(http.LastErrorText);
    return;
}

Debug.WriteLine(Convert.ToString(resp.StatusCode));
Debug.WriteLine(resp.BodyStr);

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