Are you looking for test card numbers?

Would you like to contact support?

No momento, esta página não está disponível em português
Payment-method icon

Mastercard installments in UK

Mastercard provides the option of issuer-financed installments to their customers in the United Kingdom. Adyen forwards the installment options from the issuer to the customer.

If the customer has enabled installment payments on their account, they can review installment options, and make a selection. 

Authorisation response

Installment options are returned to the customer in the /authorise response in additionalData:

{
  "additionalData": {
    "receiptFreeText":"Message to the merchant to be displayed on Terminal/shopper",
    "installmentPaymentData.installmentType":"IssuerFinanced",
    "installmentPaymentData.paymentOptions":"PayInInstallmentsOnly",
    "installmentPaymentData.option_1.numberOfInstallments":"0",
    "installmentPaymentData.option_1.interestRate":"11.0",
    "installmentPaymentData.option_1.installmentFee":"200",
    "installmentPaymentData.option_1.annualPercentageRate":"0.2",
    "installmentPaymentData.option_1.firstInstallmentAmount":"1800",
    "installmentPaymentData.option_1.subsequentInstallmentAmount":"0",
    "installmentPaymentData.option_1.minimumNumberOfInstallments":"12",
    "installmentPaymentData.option_1.maximumNumberOfInstallments":"24",
    "installmentPaymentData.option_1.totalAmountDue":"21800"
  }
}

Options could be incremented based on the number of installment options supplied by the issuer, such as: option_1, option_2, option_3.

Capture request

The selected installment option is returned to the issuer in the capture request:

{
   "additionalData": {
      "installmentPaymentData.selectedInstallmentOption": "1"
   }
}

For a list of additionalData fields passed in the /capture request, see additionalData.