#mitok_error
1 messages ยท Page 1 of 1 (latest)
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
๐ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1342090727273922685
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
hi there!
hi
Looks like you are using Direct Charge, so the PaymentIntent is directly created on the connected account
so the domain needs to be registered on the connected account.
what's the domain name of the website where you want apple pay to display?
here is what I can see on the connected account settings
got it, this domain is correctly registered on the connected account.
so I think it should work
can you share the URL and specific steps I need to do to reproduce the issue?
yeap, just a sec
- goto https://uat.flibco-ci.com/en?from=15&to=63&roundTrip=false&outwardDate=25022025&adults=1
- click "shuttle bus" on the popup
- click search on the booking form on the left of the screen
- click "Just one way" on the popup
- select any available time on the next screen and click "continue""
- click continue on the popup
- fill in any data in the fields (name, surname, email, phone number), select any airport and tick the check box "I confirm..." and click "continue"
- select "Credit Card" box and click "Proceed to Payment"
- stripe popup will appear
it is test mode and it is a UAT environment, so no impact on business
and you won't be charged
๐
but any way you don't need to do the payment as I understand, you just need to check the payment intent
got it, give me a few minutes to look into this
thanks
Looks like the PMD for uat.flibco-ci.com on acct_1LqGkXDMPmPwJSYh is disabled?
You'll need to re-enable it as the platform: https://docs.stripe.com/api/payment_method_domains/update
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
pmd_1ONDjsDMPmPwJSYhIQSJYdq6 is the ID
let me check in the dashboard
You won't see it in the Dashboard I'm afraid
I see, ok, so I will try to send the request and will get back with the results as soon as I have them
An example request here that would need adapting slightly: https://docs.stripe.com/payments/payment-methods/pmd-registration?dashboard-or-api=dashboard#register-your-domain-while-using-connect
const paymentMethodDomain = await stripe.paymentMethodDomains.update('pmd_1ONDjsDMPmPwJSYhIQSJYdq6',
{
enabled: true
},
{
stripeAccount: 'acct_1LqGkXDMPmPwJSYh',
}
)```
Using your platform keys
thanks