#Ender1776 [syndicate]
1 messages · Page 1 of 1 (latest)
Hi! Can you share the request ID (req_xxx)? Here's how you can find it: https://support.stripe.com/questions/finding-the-id-for-an-api-request
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
req_tsGWFO9Qz73jbE
Pleas note that shipping rate object is to be applied to checkout sessions (see https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-shipping_options-shipping_rate). The subscriptions API doesn't accept a shipping rate object.
sorry for the confusion, but how does this flow work for react native (custom UI with cardfield). All the docs jump from paymentIntent to createPayment or createSubscription to createPayment, I don't see any examples in the subscription flow with checkout sessions
The checkout page is a web page, so you might want to embed a webview in your react native app for your customer to complete the checkout flow.
that is not what we want though, is there no way to do this without jumping to stripe? I can do normal payments and sub payments all in RN with the nodeJS API and RN stripe SDK. Are you saying there is no way to create a subscription with shipping and confirm payment this way without leaving our application?
As I explained earlier, the Subscription APIs doesn't accept a shipping rate object.
yeah, I saw that, but I assume there must be a way to lead a customer through the reoccurring sub flow with an item and shipping without having to leave the app
There's also a beta orders API that accepts shipping rate object (https://stripe.com/docs/api/orders_v2/create#create_order_v2-shipping_cost-shipping_rate). However it's in beta and it's subject to change, so I don't really recommend using it.