You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the Ptsv2paymentsTokenInformation class in the Token action of the HomeController in the flex-microform-sample project it requires the generated token to have the correct expiration month and year property names and values added when the token is created.
Currently it is using the following options definition on line 118 of the Checkout.cshtml file...
var options = {
cardExpirationMonth: expMonth.value,
cardExpirationYear: expYear.value
};
The above options do not work. However...
var options = {
expirationMonth: expMonth.value,
expirationYear: expYear.value
};
The above options do work.
The text was updated successfully, but these errors were encountered:
With the Ptsv2paymentsTokenInformation class in the Token action of the HomeController in the flex-microform-sample project it requires the generated token to have the correct expiration month and year property names and values added when the token is created.
Currently it is using the following options definition on line 118 of the Checkout.cshtml file...
The above options do not work. However...
The above options do work.
The text was updated successfully, but these errors were encountered: