Does Chargebee provide APIs to automatically convert the price into selected currency_code?

Modified on: Wed, 7 Oct, 2020 at 8:15 AM

This article covers 

Do I need to write custom code to convert the cents into USD and GBP 

Does Chargebee provide any built-in function or setting to automatically convert plan price?

Plan price conversion

Summary


In Chargebee to pass the price value in the API call, the amount must be entered in the lower currency value. Example: cents for dollars.


For example, if you want the plan price as 560 while creating a plan (with USD as the currency), you need to pass the amount in the API as 56000(in cents). If you pass the value actual as 560, the plan will be displayed as 5.60 in the front-end for your customers,

Here is an example:

curl  https://xyz-test.chargebee.com/api/v2/plans \

-u test_IbAGypcuK92WnKq7xcPM1eDzL3Rr7COLo:\

-d id="USDfinal" \

-d name="USDfinal" \

-d price=56000\

-d currency_code="USD"\

-d pricing_model="flat_fee"\

-d period_unit="month"\

 -d period="1"

Related articles and Documentation

API Tutorials
Chargebee API's Documentation

Did you find it helpful? Yes No

Send feedback
Sorry we couldn't be helpful. Help us improve this article with your feedback.
×