Hi @bfl. I’m having trouble using MOTO SCA exemption setting with your plugin.
I’ve been in touch with Stripe support and they claim they enabled manual payments. But whenever I’m trying to test it on the backend order page, using Stripe test card supporting 3D secure, I keep getting message saying:
“The Mark Payments as MOTO setting is enabled, however your Stripe account does not have the MOTO feature enabled. You will need to contact Stripe to get this feature enabled for your account.”
This is the API log (with sensitive data removed), hope it will help to find a solution:
Request POST body
{
"amount": "2500",
"currency": "GBP",
"payment_method_data": {
"type": "card",
"card": {
"token": [REMOVED]
}
},
"confirm": "true",
"capture_method": "automatic",
"description": [REMOVED],
"metadata": {
"Order Number": "40163"
},
"payment_method_options": {
"card": {
"moto": "true"
}
}
}
Response body
{
"error": {
"code": "parameter_unknown",
"doc_url": "https://stripe.com/docs/error-codes/parameter-unknown",
"message": "Received unknown parameter: payment_method_options[card][moto]",
"param": "payment_method_options[card][moto]",
"type": "invalid_request_error"
}
}