#manusw20
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. 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.
- manusw20, 1 day ago, 48 messages
You are looking for this API call right?
https://docs.stripe.com/api/subscriptions/update?lang=java#update_subscription-default_tax_rates
yes
but Java code
SubscriptionUpdateParams params =
SubscriptionUpdateParams.builder().putMetadata("default_tax_rates", "taxrate1").build();
should be something like this?
No, you need to use putExtraParam
SubscriptionUpdateParams.builder().putExtraParam("default_tax_rates", "taxrate1").build();
bt it is an array of strings