#dcx-ng_docs
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/1310922900022362163
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- dcx-ng_code, 27 minutes ago, 10 messages
hi there!
and it returns the following error Don’t forget to attach the Customer and PaymentMethod IDs to the PaymentIntent.
can you share the request ID (req_xxx)? you can find it here https://dashboard.stripe.com/test/logs
well, what's the worksheet question? do they ask to attach a payment method to a customer? because the request you shared doesn't do that.
Alex returns the next morning requesting 12 tickets. He authorizes you to charge him for the order.
Create a PaymentIntent to charge Alex 64 USD. Paste the PaymentIntent ID below.
got it. I'm not very familiar with this page or what exactly it's trying to teach. so not sure.
who can help me ?
you could tell me exactly what you are trying to learn/do, and I can tell you how to do it.
or, if you specifically need help about this worksheet page, you could ask Stripe support: https://support.stripe.com/contact
it goes step by step first i create a new customer then a setupIntent for it then i add a paymentMethod and confirm the setupIntent this all works
and the last step is to create a paymentIntent for it like this
i add the amount of 64 usd and set the confirm to true and also add the customer-id and the payment-method-id but if i want to add the paymentIntent id into the field i get the error
but ion the dashboard i can see a successful created paymentIntent
stripe customers create --name "Alex" --email "alex@example.com"
stripe setup_intents create --description="(created by Stripe Shell)" --customer="cus_RHkGLpYVKrKq4O" -d "automatic_payment_methods[enabled]=true" -d "automatic_payment_methods[allow_redirects]=never"
stripe setup_intents update seti_1QPAmvEiRMIWIJsTkgieqibe --customer="cus_RHkGLpYVKrKq4O" --payment-method="pm_card_visa"
stripe setup_intents confirm seti_1QPAmvEiRMIWIJsTkgieqibe --payment-method pm_1QPAoQEiRMIWIJsTmwG0SeTc
stripe payment_intents create --amount="64" --currency="usd" --description="(created by Stripe Shell)" --customer="cus_RHkGLpYVKrKq4O" --payment-method="pm_1QPAoQEiRMIWIJsTmwG0SeTc" --confirm="true" -d "automatic_payment_methods[enabled]=true" -d "automatic_payment_methods[allow_redirects]=never"
and you still get the same issue as before?
--amount="64" that's 0.64 USS, not 64 USD.
ok so it should be 6400 then do have 64 usd ?
i will try this
yes
it was this the error message was not helping than you so much