Hi, I'm using the REST API to handle payments in my application. I'm using this integration: https://knowledgecenter.zuora.com/DC_Developers/REST_API/B_REST_API_reference/Accounts/1_Create_account If you look closer to the API Documentation, the cardType parameter values are: Visa, MasterCard, AmericanExpress, Discover. But if you pass a value that is not recognized by Zuora, for example {cardType: "ApplePay"} then Zuora will obviously fail and here is the response: ps: ApplePay is just for the example to make the API fail. As you see, values are now: Visa, MasterCard, AmericanExpress, Discover, JCB, Diners, CUP, Maestro, Electron. Are these card types accepted by Zuora (in orange) ? I tried to make payment with these cards using fake test card number (https://docs.adyen.com/support/integration#testcardnumbers) but it's payment are failing, here is the Zuora response: JCB: Error processing transaction.<br>905 - Payment details are not supported MAESTRO: PaymentMethod.errormsg.CreditCardTypeInvalid DINERS: Error processing transaction.<br>905 - Payment details are not supported Thanks, Sebastien
... View more