#binbin_65473
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. 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.
- binbin_65473, 34 minutes ago, 6 messages
- What are order notifications?
- https://stripe.com/docs/payments/during-payment/charge-shipping?payment-ui=checkout
- You can't, the total is computed from all the line items as associated fees (tax, shipping, etc)
A callback to an address for successful user payments.
You'd use a webhook: https://stripe.com/docs/payments/checkout/fulfill-orders
thx
If the price of my product changes during the payment process, can I update the product price
@spark thistle bro
Please don't @ me
ok fine
What do you mean 'during payment process'?
I initiated a payment with a $10 product, can I update this $10 product to become $20 before submitting the payment form?
No, you'd need to create a new session
thx
After successful payment, Stripe sends an email to the customer. I don't want Stripe to send it; I want to send it myself. Is that possible?
You can disable them sure: https://stripe.com/docs/receipts?payment-ui=checkout#automatically-send-receipts
ok
In the embedded form, there is an email input field, and my own payment page already has this. Can I remove this input field?
You cannot. You can prefill that field with the value you're collecting: https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-customer_email
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
I have many domain names, a lot of them. Now, I want to use the webhook feature. Do I need to add each domain to the backend?
heelo
how does that work, you have one Stripe account for many different domains?
i get
Can I transmit my custom shipping fees and discounts to you without using the Stripe dashboard
sure, have a look at the CheckoutSession or Invoice APIs.
Can you send me the specific URL, please?
I see in this API that it only allows the transmission of CODE and doesn't permit the transmission of other content.
I think my colleague shared useful links above.
allows the transmission of CODE and doesn't permit the transmission of other content.
I don't know what that means unfortunately
For example, I have 10 products, each priced at $10, with a $10 shipping fee, and there's also a 20% discount coupon for one product. In the end, I should charge the customer $90. Can I transmit all of these values to Stripe?
yep
there's lots of flexibility in https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-line_items to do that.