#Wurkzen
1 messages · Page 1 of 1 (latest)
Hi there, what kind of dynamic pricing do you refer to? is it like customers-choose-what-to-pay ?
No, when we create the payment link we want to define the price but we sync all of the products to stripe so we alreayd have a stripe product_id
We create our products in stripe without pricing
I guess best bet would be to create the price as we create the payment link
OK, so you are asking if you can create ad-hoc price when creating a payment link.
whats the best bet?
a. create a new price
b. set the price on the payment link (not sure if this is doable)
I'm afraid it's not possible at this moment, you need to create a price first, and use the price ID to create a payment link.
ok, but we can just create a price for each payment link then
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
So
- Create price_id for the product_id
- Create payment link from the price_id
- .......?
- profit!
Yes, it looks good to me.
thanks Jack