Chilkat Online Tools

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

Back to Collection Items

Use ChilkatAx-9.5.0-win32.pkg

Procedure Test
    Handle hoHttp
    Boolean iSuccess
    Variant vResp
    Handle hoResp
    String sTemp1
    Integer iTemp1
    Boolean bTemp1

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

    Get Create (RefClass(cComChilkatHttp)) To hoHttp
    If (Not(IsComObjectCreated(hoHttp))) Begin
        Send CreateComObject of hoHttp
    End

    // Adds the "Authorization: Bearer <access_token>" header.
    Set ComAuthToken Of hoHttp To "<access_token>"
    Send ComSetRequestHeader To hoHttp "x-gp-version" "{{version}}"

    Get ComQuickRequest Of hoHttp "POST" "https://{{url}}/ucp/authentications/{{aut_id}}/result" To vResp
    If (IsComObject(vResp)) Begin
        Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
        Set pvComObject Of hoResp To vResp
    End
    Get ComLastMethodSuccess Of hoHttp To bTemp1
    If (bTemp1 = False) Begin
        Get ComLastErrorText Of hoHttp To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Get ComStatusCode Of hoResp To iTemp1
    Showln iTemp1
    Get ComBodyStr Of hoResp To sTemp1
    Showln sTemp1
    Send Destroy of hoResp


End_Procedure

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