#yuwen2108
1 messages · Page 1 of 1 (latest)
can you elaborate more on what you mean by you can't use tax_rates together inside the items?
we received this error [Stripe::InvalidRequestError] When payment_behavioris set topending_if_incomplete, you can only pass supported params. items[0][tax_rates] is not supported.
can you share the request id [0]? it'd look like req_xxx
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
req_rFv3gr9ykvJL3E
hello, any update?
Hey! Taking over for my colleague. Let me catch up.
Correct the error message is quiet explicit, these are the supported attributes that you can update when using pending_if_incomplete:
https://stripe.com/docs/billing/subscriptions/pending-updates-reference#supported-attributes
but how can we apply tax_rates to subscription item when update? we use always_invoice so it will generate invoice immediately.
but how can we apply tax_rates to subscription item when update?
did you trieddefault_incompleteorallow_incomplete?
we need to support 3DS so need to rely on pending_updaate data when 3DS completed. Or is there any better flow for this?
I don't understand the link between 3DS and the update for the tax rate you want to achieve ?
3DS is something (may be) requested by the card's bank issuer
we need to support 3DS so the payment behavior need to be pending_if_incomplete in order to have pending_update object and can restore after 3DS completed. We can only use pending_if_incomplte in this case and but also need to apply tax_rates to subscription item.
We can only use pending_if_incomplte in this case and but also need to apply tax_rates to subscription item.
You can't update tax_rates with pending_if_incomplete.
we need to support 3DS so the payment behavior need to be pending_if_incomplete in order to have pending_update object and can restore after 3DS completed.
I don't see yet, the link you are trying to made between 3DS and the update honestly.
because before 3DS we need to keep subscription as previous status and old subscription item, can't transfer to incomplete. And after 3DS completed, need to update that subscription to the new subscription item.