Skip to content

Deprecate non-tokenized MPO #159

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,43 +7,51 @@ weight: 125
#### Method: mobilepayonline

{{% description_list %}}
{{% description_term %}}mobilepayonline[pan] {{% regex %}}[0-9]{12,19}{{% /regex %}}{{% /description_term %}}
{{% description_details %}}
Primary account number of card to charge.

If `payment_token` parameter is included, the pan must be a Token PAN.
{{% description_term %}}mobilepayonline[payment_token] {{% regex %}}[\:json\:]{{% /regex %}}{{% /description_term %}}
{{% description_details %}}
Full tokenCallback response serialized as JSON, supplied as a string. Required for token-based authentication.
Example: `{"paymentId":"string","tokenData":{"cryptogramInfo":{...},...},...}`
{{% regex_optional %}}Optional{{% /regex_optional %}}
{{% /description_details %}}

{{% description_term %}}mobilepayonline[expire_month] {{% regex %}}[0-9]{2}{{% /regex %}}{{% /description_term %}}
{{% description_term %}}mobilepayonline[3dsecure] {{% regex %}}dictionary{{% /regex %}}{{% /description_term %}}
{{% description_details %}}
Expiry month of card to charge.
See [Authentication: [3dsecure]](#authentication-3dsecure).
{{% regex_optional %}}Optional{{% /regex_optional %}}
{{% /description_details %}}

{{% description_term %}}mobilepayonline[expire_year] {{% regex %}}[0-9]{4}{{% /regex %}}{{% /description_term %}}

{{% description_term %}}~~mobilepayonline[phone_number]~~ {{% regex %}}~~[\x20-\x7E]{1,15}~~{{% /regex %}}{{% /description_term %}}
{{% description_details %}}
Expiry year of card to charge.
Deprecated! Please use `mobilepayonline[payment_token]`.

~~Phone number from where the PAN originates.~~
{{% regex_optional %}}~~Optional~~{{% /regex_optional %}}
{{% /description_details %}}

{{% description_term %}}mobilepayonline[payment_token] {{% regex %}}[\:json\:]{{% /regex %}}{{% /description_term %}}
{{% description_term %}}~~mobilepayonline[pan]~~ {{% regex %}}~~[0-9]{12,19}~~{{% /regex %}}{{% /description_term %}}
{{% description_details %}}
Full tokenCallback response serialized as JSON, supplied as a string. Required for token-based authentication.
Example: `{"paymentId":"string","tokenData":{"cryptogramInfo":{...},...},...}`
{{% regex_optional %}}Optional{{% /regex_optional %}}
{{% /description_details %}}
Deprecated! Please use `mobilepayonline[payment_token]`.

{{% description_term %}}mobilepayonline[phone_number] {{% regex %}}[\x20-\x7E]{1,15}{{% /regex %}}{{% /description_term %}}
{{% description_details %}}
Phone number from where the PAN originates.
{{% regex_optional %}}Optional{{% /regex_optional %}}
{{% /description_details %}}
~~Primary account number of card to charge.~~

~~If `payment_token` parameter is included, the pan must be a Token PAN.~~
{{% /description_details %}}

{{% description_term %}}mobilepayonline[3dsecure] {{% regex %}}dictionary{{% /regex %}}{{% /description_term %}}
{{% description_term %}}~~mobilepayonline[expire_month]~~ {{% regex %}}~~[0-9]{2}~~{{% /regex %}}{{% /description_term %}}
{{% description_details %}}
See [Authentication: [3dsecure]](#authentication-3dsecure).
{{% regex_optional %}}Optional{{% /regex_optional %}}
Deprecated! Please use `mobilepayonline[payment_token]`.

~~Expiry month of card to charge.~~
{{% /description_details %}}

{{% description_term %}}~~mobilepayonline[expire_year]~~ {{% regex %}}~~[0-9]{4}~~{{% /regex %}}{{% /description_term %}}
{{% description_details %}}
Deprecated! Please use `mobilepayonline[payment_token]`.

~~Expiry year of card to charge.~~
{{% /description_details %}}

{{% description_term %}}~~mobilepayonline[pares]~~ {{% regex %}}~~[\:base64\:]~~{{% /regex %}}{{% /description_term %}}
{{% description_details %}}
Expand Down