Adyen ApplePay
Step 1 - Tokenize the ApplePay payment method in Adyen
Read more info on how to do this step here
Step 2 - Send the token to Upodi
Posting those to Upod will be done by making a POST request to /paymentmethods/{customerId} with a body including the token
object:
{
"type" : 64,
"makedefault" : "true",
"puretoken" : {
"token" : {
"Token": "7219687191761347",
"shopperreference": "YOUR_UNIQUE_SHOPPER_ID_IOfW3k9G2PvXFu2j"
},
"paymentgateway" : "adyen_applepay"
}
}
In Adyen Server Communication Settings setup a new Standard Notification
and set it up with URL https://app.upodi.io/catcher.ashx?type=adyen_applepay&t={Upodi Callback key}
and choose TLSv1.2
. The rest of the settings can be left as they are.
Now Adyen will automatically notify Upodi about the payment status of your payments.
Updated 6 months ago