#kipsoft-subscription-incomplete
1 messages · Page 1 of 1 (latest)
You would look at the associated subscription instead. I recommend doing the update via https://stripe.com/docs/api/subscriptions/update instead as it makes it easier to work with
Can I update the item with subscription update?
I'm need a change price and quantity.
yes there's an items parameter and https://stripe.com/docs/billing/subscriptions/upgrade-downgrade covers this in details!
hmm need a item id on update. alright does the transaction work synchronously in the invoice payment after the subscription update?
not sure what "the transaction work synchronously" means, can I ask you to explain this in more details or with a specific example?
and yes you need the subscription item id, the si_123, but you have it since you were hitting the SubscriptionItem Update API already
I'm update subscription update with always_invoce. Stripe create a invoce and try the payment. I need this invoice status on sync.
so use the method I linked you to above and it will do exactly what you're after!
keep us posted
great working. if payment is failed have a pending_update object in response body else not have a pending update object.