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.