Getting started building a custom CRM adapter
The developer framework is currently in BETA
This framework is in beta. Please submit a Github issue if you encounter any problems or have a question.
Every CRM adapter requires a manifest file which provides developers a way to configure and customize the framework properly for the associated CRM. Via the adapter's manifest, developers can:
- Provide CRM connectivity and authorization details
- Define custom fields for:
- call logging and disposition forms
- SMS and messagig logging forms
- Customize the "Connect to CRM" or authorization screen
- Define custom contact record types/categories
- Customize the welcome screen for a given CRM
Clone or fork the framework's repository
Let's begin by downloading the framework to your development machine.
> git clone https://github.com/ringcentral/rc-unified-crm-extension.git
> cd rc-unified-crm-extension
Next, copy the contents of the test CRM adapter to a new folder where your adapter will be placed.
> cp src/adapters/testCRM src/adapters/my-crm-adatper
Setup and start your server
Each adapter requires a server to be running. This server exposes a canonical API to the App Connect framework, and in a sense acts as a broker or proxy between the front-end client, and the CRM. Let's setup and start the sample server bundled with the framework.
Open up a console and within it, follow these instructions.
-
Install the necessary prerequisites
npm i
-
Start ngrok
npm run ngrok
Make note of your personalized ngrok URL (referred as
https://xxxx.ngrok.app
below). -
Edit your server's manifest file in the
rc-unified-crm-extension/server
directorycp .env.test .env
Edit
.env
and setAPP_SERVER
equal to your personalized ngrok URL above. -
Edit test CRM manifest file in the
rc-unified-crm-extension/src/adapters/testCRM
directoryChange
serverUrl
inmanifest.json
tohttps://xxxx.ngrok.app
-
Start your server from the
rc-unified-crm-extension/server
directorynpm run start
Install and configure the client
Download Chrome extension from Chrome Web Store
Right click extension's icon and go to Options, change Custom CRM manifest url to the following URL:
https://xxxx.ngrok.app/crmManifest?platformName=testCRM
Click "Save."
What to do if saving options doesn't work
If the option save failed, please try if you can manually open the manifest file from browser. Sometimes there's network policy that blocks web tunnel like ngrok.
Now, the extension is setup with a manifest that serves testCRM
. From the manifest file we can tell that the variable okatforms.testCRM.urlIdentifier
= "*.labs.ringcentral.com/*". Let's use https://unified-crm-extension.labs.ringcentral.com/is-alive as the test CRM homepage.
Open the extension on the page and login with your RingCentral account. Then you should be able to play with mock data and see how this extension works.
Next step: edit your manifest file
Fork this repo and track changes better
Under this framework, there are 1 javascript file and 1 manifest.json file that you'll need to create which are new files therefore won't prevent you from fetching the latest changes from this repo. Please don't change anything outside of that in case of conflicts in pull actions.
With this step complete, you now have a shell of an adapter in place and you are ready to begin development. Let's start by customizing your adapter's manifest file.