#AmusedGrape-metadata
1 messages · Page 1 of 1 (latest)
Hi @spring crown is your question related to customer portal or checkout session? or both?
more so the customer portal, if i can just pass something through the API to only show a single subscription
https://stripe.com/docs/api/customer_portal/configuration#portal_configuration_object-features-subscription_update-products You might want to use the configuration object to customize the customer portal
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 don't think that'll work, i'd like to provide the sub_xxxxxxxxx id to only update that.
worst case scenario i can make my own interface for that but if i can avoid it the better
Let me give you an example.
A customer has subscribed to prod_A and prod_B, and you only want the customer to make changes to prod_A, not prod_B.
You can pass prod_A to this products array to limit the update to prod_A only.
ohhh okay, i can try that