This article covers
I want to connect two apps to my Chargebee site. How to do it?
Solution
Let’s say you have 2 apps
- App 1
- App 2
You can connect the 1st App via the UI
To connect the 2nd app, you need to follow the below steps
Call the in_app_details API with the required details
The response of the above API will contain the application-id
To access the sync overview page for the 2nd app, you can go to the first app’s sync overview page, copy the URL and then replace the application ID of the 1st app with the application id of the 2nd app
curl HTTPS://<sitename>.chargebee.com/API/v2/in_app_details
-X POST \
-u {api_key}:\
-d shared_secret=”{shared_secret}” \
-d app_id=”{package_name}” \
-d channel="app_store"
Here’s a video demonstrating the steps
Related articles and Documentation