Improved
TGU: Release notes 01-07-2025
4 months ago by Wesley de Kanter
- Added a new key
customerMethodto everyPaymentobject in an order. When available, this object will contain a keytypewhich specified the used method. The second key,datawill contain specific data for that method. We currently have 2 types,ibanandcard:
IBAN:
"customerMethod": {
"type": "iban",
"data": {
"iban": "NL35RABO0117713678",
"name": "Stichting Derdengelden Pay.nl",
"bic": "RABONL2U"
}
}Card:
"customerMethod": {
"type": "card",
"data": {
"maskedPan": "123456******7890",
"scheme": "VISA",
"issuerId": "18533",
"countryCode": "642",
"cardType": "consumer",
"fundingType": "debit",
"brandCode": "F",
"brandName": "Visa Classic",
"brandProduct": "CN"
}
}- Updated several polish translations on the checkout screen.
- Giftcards: Added support for non-numeric PIN entry.
- Giftcards: Fixed a bug preventing customers to be redirected to the giftcard input screen when an order was started with payment method
giftcard. Customers were redirected to the payment method selection screen in stead. - Giftcards: Payments requiring input will now have an expire time of 30 minutes. They previously had no expire time, causing abandoned orders to linger for longer than needed.