#mrwarzo_api
1 messages ยท Page 1 of 1 (latest)
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
๐ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1470728366960148532
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
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.
- mrwarzo_webhooks, 44 minutes ago, 9 messages
I don't think you can โ the description is inherited from the line item's Product object (https://docs.stripe.com/api/products/object#product_object-name)
Where do you want to display the custom descriptions? On the PDF?
I was thinking about the "functionnality" system, if I create 1 product for 1 number for the price of 0$, then i assign the functionality corresponding with one of my 3 pricing, do you know if it's a nice solution ?
Sorry I don't know what you mean
Yes i want to display it on the pdf because the client can subscribe to one custom phone number with 3 differents pricing (will change the functionalities in app) so a client can subscribe to X phone numbers and I need to show them on the invoice
sorry im not native english speaker
https://dashboard.stripe.com/<acc_id>/test/features?active=true&create=feature
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
I was talking about this
Then you're likely going to have to use the ad-hoc products concept, where each unique product/number is a Product object inside of Stripe: https://docs.stripe.com/products-prices/manage-prices#create-inline-price
The line item's description is computed from product.name. So when customer Y signs up, you create their unique product and assign name: 'your unique name 1234'
Yeah that's what I done first but if one day I need to update the price, will I need to foreach on all subscription and update the pricing ?
Yes they're immutable
Ok, thank you for you assistance