Files
adyen-curl/PostPaymentsResult.ps1
Julien Lengrand-Lambert 610eb4d5a9 For fun
2024-02-22 16:13:52 +01:00

16 lines
443 B
PowerShell

<#
Request: POST /payments/result
Summary: Verify a payment result
Description: Verifies the payment result using the payload returned from the Checkout SDK.
For more information, refer to [How it works](https://docs.adyen.com/online-payments#howitworks).
#>
curl -X POST https://checkout-test.adyen.com/v71/payments/result `
-H 'Accept: application/json' `
-H 'Content-Type: application/json' `
-d '{
"payload": "payload"
}'