Sample code for 30+ languages & platforms
AutoIt

Adyen Verify Payment Result

See more Adyen Examples

Once a payment has completed, this verifies the result from your server with a /payments/result request.

Chilkat AutoIt Downloads

AutoIt
Local $bSuccess = False

$oHttp = ObjCreate("Chilkat.Http")

; Use this online tool to generate the code from sample JSON:
; Generate Code to Create JSON

; The following JSON is sent in the request body.

; {
;   "payload": "2he28Ddhwj242he28Ddhwj..."
; }
$oJson = ObjCreate("Chilkat.JsonObject")
$oJson.UpdateString("payload","2he28Ddhwj242he28Ddhwj...")

$oHttp.SetRequestHeader "X-API-Key","Your_API_key"

$oResp = ObjCreate("Chilkat.HttpResponse")
$bSuccess = $oHttp.HttpJson("POST","https://checkout-test.adyen.com/v41/payments/result",$oJson,"application/json",$oResp)
If ($bSuccess = False) Then
    ConsoleWrite($oHttp.LastErrorText & @CRLF)
    Exit
EndIf

$oSbResponseBody = ObjCreate("Chilkat.StringBuilder")
$oResp.GetBodySb($oSbResponseBody)

$oJResp = ObjCreate("Chilkat.JsonObject")
$oJResp.LoadSb($oSbResponseBody)
$oJResp.EmitCompact = False

Local $iRespStatusCode = $oResp.StatusCode
ConsoleWrite("Status Code = " & $iRespStatusCode & @CRLF)
ConsoleWrite("Response Body:" & @CRLF)
ConsoleWrite($oJResp.Emit() & @CRLF)

If ($iRespStatusCode >= 400) Then
    ConsoleWrite("Response Header:" & @CRLF)
    ConsoleWrite($oResp.Header & @CRLF)
    ConsoleWrite("Failed." & @CRLF)
    Exit
EndIf

; Sample JSON response:

; {
;   "pspReference": "851559480052382F",
;   "resultCode": "Authorised",
;   "merchantReference": "123",
;   "paymentMethod": "ideal",
;   "shopperLocale": "nl_NL"
; }

; Sample code for parsing the JSON response...
; Use the following online tool to generate parsing code from sample JSON:
; Generate Parsing Code from JSON

Local $sPspReference
Local $sResultCode
Local $sMerchantReference
Local $sPaymentMethod
Local $shopperLocale

$sPspReference = $oJResp.StringOf("pspReference")
$sResultCode = $oJResp.StringOf("resultCode")
$sMerchantReference = $oJResp.StringOf("merchantReference")
$sPaymentMethod = $oJResp.StringOf("paymentMethod")
$shopperLocale = $oJResp.StringOf("shopperLocale")