To use Upodi with Adyen tokens, you must create a payment token via the Adyen frontend integration. Adyen support tokenization using the Client Secure Encryption (CSE) and by implementering the required features using their guides.
- Read more on implementing Adyen payment methods here.
- Read more on implementing of Adyen iDEAL here.
Adyen is strict using their frontend implementation guides. Upodi cannot provide creating these payment methods using the web application.
Upodi Payment
To create a payment method for Adyen token, make a POST request to /paymentmethods/:customerid/ with a body using the createpaymentmethod request object:
{
"type" : 64 /* PureTokenBased = 64 */,
"makedefault" : "true", /* will make the payment method default */
"puretoken" : {
"token" : "cse_lWQLKs+0Fr+C2oeA", /* Adyen token */
"paymentgateway" : "adyen"
}
}