#rlm
1 messages ยท Page 1 of 1 (latest)
Hello ๐
Give me a moment to take a look
(server is running a bit busy today)
Do you have an example SetupIntent ID or request ID I can take a look at?
this is my setupintent where i got the first error.
$stripe->setupIntents->create([ 'payment_method_options' => ['card' => ['moto' => true]], 'confirm' => true, ]);
and this is the other one
$response = $stripe->paymentIntents->create([ 'amount' => 3000, 'currency' => 'gbp', 'customer' => 'cus_xxxx', 'payment_method' => 'pm_xxxx', 'payment_method_options' => ['card' => ['moto' => true]], 'confirm' => true, ]);
that's not how it works though with moto payments
https://stripe.com/docs/payments/payment-intents/moto#future-payments
You'd typically pass in raw PAN as shown in the example
will check on this. thanks @wet cloak
NP! Good luck ๐