#D4reDev1l.
1 messages · Page 1 of 1 (latest)
Sounds like you'll need Stripe Connect: https://stripe.com/docs/connect
In order for anyone to accept payments they need an account
Right so customer b would need a connect account connected to your platform account
Connect is a very large product offering, so recommend you take time to read the docs
both me and customer b need connect account?
subscription API can only use price id, it cannot use numbers. e.g. if I want to charge 10 USD, I have to create or query a price object with unitamount 1000(10USD) and charge customer A with it?
No you can pass raw amount too: https://stripe.com/docs/api/subscriptions/create#create_subscription-items-price_data
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
application fee percentage is a percentage not a raw amout
and add _invoice_items accept price id based on example here
'
You can pass price_data instead of price
Check the link I sent
You're correct about application fee though
I do a page search on the create subscription page I dont find price_data
price_data is what you pass into the Subscription creation API request. That creates a new Price object that gets attached to the Subscription. You can't search for it. If you want the Price data you set when the Sub was created, you just need to look at the Sub's Price object
pas it inside the items parameter?