Docs
My addon ID includes a "+" sign and the Checkout URL throws an error even though the addon exists. Why?
The "+" character has special meaning in URLs and must be replaced with %2B (URL-encoded form). See URL encoding.
In any Checkout URL where the plan or addon ID contains a "+" sign, replace + with %2B.
Example: If your addon ID is addon+id and the URL is:
https://yoursite.chargebee.com/pages/plans/checkout?addon_ids=addon+id
Change it to:
https://yoursite.chargebee.com/pages/plans/checkout?addon_ids=addon%2Bid
Was this article helpful?