Skip to content

Javascript options property names incorrect in Checkout.cshtml line 118... #9

@dkimbell13

Description

@dkimbell13

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions