Skip to main content
1 vote
0 answers
70 views

Problem I am building a custom WooCommerce plugin that integrates with the Partial.ly API to create installment payment plans. I am following the official Partial.ly documentation for creating a ...
Mudassir Ahmed's user avatar
0 votes
1 answer
65 views

I have a server application that handles checkout "post" from a user form. It create a session using stripe.checkout.sessions.create(...) and it works, meaning I can see the activity in the ...
damix911's user avatar
  • 4,507
0 votes
1 answer
108 views

I have a WordPress (WooCommerce) website with Stripe integrated and connected to a Stripe account. I want to use two Stripe accounts based on the customer’s billing country. For example, if a customer ...
Zohaib Amir's user avatar
0 votes
1 answer
54 views

const session = await stripe().checkout.sessions.create({ mode: "subscription", payment_method_collection: "if_required", subscription_data: { trial_period_days: 14, }...
sumanth.js's user avatar
Best practices
0 votes
1 replies
89 views

I have a question regarding testing Stripe webhooks for Stripe Connect. When testing Stripe API endpoints, it is straightforward because you can simply use your API key and call the endpoints directly ...
StackKaan's user avatar
Tooling
0 votes
0 replies
69 views

I want to build a service marketplace application (similar to Fiverr) where: Sellers can create service listings Buyers can purchase services Payments are handled via Stripe Connect (split payments ...
KutayDev's user avatar
0 votes
1 answer
52 views

I’m trying to attach a coupon to an existing Stripe customer using the Stripe Java SDK. In Stripe Java SDK v28.0.0, this was working fine using setCoupon() on CustomerUpdateParams. However, after ...
Karan Shah's user avatar
Best practices
0 votes
2 replies
74 views

I’m building a Flutter app using Stripe for payments. All prices are in GBP (£). My requirement is: Booking price is £10 Stripe charges a processing fee (varies by card country / FX) I want the ...
UKASHA ANWAR's user avatar
0 votes
1 answer
111 views

So I have been trying to setup a subscription (Save card now pay later) Let me first show how I'm saving the card against the user customer = await stripe.customers.create({ name: req....
Abdullah Moudood's user avatar
1 vote
2 answers
99 views

I’m migrating from an older flow where I used to verify a customer’s card by creating a small authorization charge (e.g., $1) using a PaymentIntent. This helped ensure the card was valid, had ...
Abdullah Moudood's user avatar
2 votes
1 answer
201 views

I'm using PHP to generate my website's pages, Bootstrap 5 to style the pages and Stripe to process customer payments. I'd like to style Stripe's payment elements to match the underlying theme of my ...
Limey's user avatar
  • 13k
Advice
0 votes
1 replies
34 views

Question I’m working on a Flutter app using Stripe for payments. Use case: A user makes a booking and can add a friend to split the bill. Example: Total booking price: $10 User pays $5 immediately ...
UKASHA ANWAR's user avatar
0 votes
1 answer
48 views

I’m trying to attach a coupon to an existing Stripe customer using the Stripe Java SDK. In Stripe Java SDK v28.0.0, this was working fine using setCoupon() on CustomerUpdateParams. However, after ...
Suraj Dombale's user avatar
0 votes
1 answer
72 views

There is no API for querying discount information directly. When querying the subscription: Stripe::Subscription.retrieve('my_sub_id') # returns: #<Stripe::Subscription:0xb8a80 JSON: { .. "...
PressingOnAlways's user avatar
0 votes
1 answer
55 views

Consider the following: @user.payment_processor.subscribe(name: "default", plan: "monthly", quantity: 3) How do you subscribe with a coupon code attached? See: https://docs.stripe....
PressingOnAlways's user avatar

15 30 50 per page
1
2 3 4 5
878