Ricky Rodrigo

Results 13 comments of Ricky Rodrigo

Here is my current config for adyen ```json { "description": "Card payment", "environment": "test", "apiKey": "API here", "clientKey": "key here", "merchantAccount": "Account here", "currency": "AUD", "countryCode": "AU" } ```

Alright, but in the code that you sent me, should I replace it with the current code in the script or just add those? And for the GCash API, I...

This is my current code on `adyen.js` ```js const payload = { merchantAccount: adyenConfig.merchantAccount, amount: { currency: adyenConfig.currency, value: numeral(req.session.totalCartAmount).format('0.00').replace('.', '') }, paymentMethod: { type: 'gcash', storedPaymentMethodId: "7219687191761347" }, returnUrl:...