#KRS
1 messages · Page 1 of 1 (latest)
hi, taking a look...
so the subscription is udpated with new price items (10/26/22, 6:00:25 AM)
do you have the request IDreq_xxxthat corresponds to that update? the subscription object here is a little complex so I'm having trouble finding that
I suppose you mean https://dashboard.stripe.com/test/logs/req_GcBEgNSy4VuAuO ?
could you also please let me know exactly which items on the invoice (https://dashboard.stripe.com/test/invoices/in_1LxRzxIvwrjYDHRMPG8MtmT7) are wrong and what you expected to see there instead?
@jolly bluff
the request has 5 price items
but the invoice is using the older price items too. i want to replace it with only the new 5 price items
https://connect.stripe.com/test/invoices/in_1LxRzxIvwrjYDHRMPG8MtmT7 - invoice which is having all those items still
ah I see. Well that's normal at least. The items that you don't specify remain completely unchanged
it's the opposite of the SubscriptionSchedule API unfortunately(where items you don't specify get deleted), so I appreciate the confusion
if you want to delete them you have to mention them in the Update API call so that for example you pass items:[{id:si_123, deleted:true}, {id:si_456, price:new_price_id}]
ok. understood. will implement it and check