#ds-dev_code
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/1369206547472846999
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi! Sorry is the issue that the description is not being passed to the charge object?
yes
Hi!
I want to pass another description in charge object during subscription create request
Now I see only two statuses :
"Subscription Creation": For initial subscription purchases.
"Subscription Update": Includes all transactions other than subscription creation, without further differentiation.
Give me a moment to look into it!
Thanks for waiting! I tested by passing description when creating a Subscription (https://docs.stripe.com/api/subscriptions/create?api-version=2025-04-30.basil#create_subscription-description). The description is carried forward to the Payment Intent object. Is that what you are referring to?
Can I change description for recurring payments?
Do you mean on subsequent payment intents?
for some plans I want to change description from "Subscription Update" to "Upsell update"?
Can I confirm if you are referring to the description on the Subscription (https://docs.stripe.com/api/subscriptions/create?api-version=2025-04-30.basil#create_subscription-description) or the billing_reason on the invoice (https://docs.stripe.com/api/invoices/object#invoice_object-billing_reason)?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
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 tried to change description field during subscribe request and get corrrect description after rebill i got the same value
can I change description of rebill transactions?
Can I have the Subscription ID?
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 wanna "upsell update" as description for next rebill charges - it's possible?
Looking into this.
You can update the description of the Payment Intent: https://docs.stripe.com/api/payment_intents/update?api-version=2025-04-30.preview#update_payment_intent-description
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Ok, It's working, thank you!