Sign In
or
Sign Up
Home
Applications
Recipes
Home
Applications
Recipes
Sign in
Sign up
Create
BILLIVING
clients for new LessAnnoyingCRM companies
Copy Integration
JavaScript
Copy Integration Recipe
Step 1.
Enter your LESS ANNOYING CRM API credentials
About Less Annoying CRM Credentials:
Log into your LessAnnoyingCRM account.
Go to Settings > View more settings options
Go to
Programmer API
Click the generate token button which will create 'User Code' and 'API Token'.
More about
Less Annoying CRM Integrations
Step 2.
Enter your BILLIVING API credentials
About BILLIVING Credentials:
Log into your BILLIVING account
Go to Settings >
API Integration
Click to generate your api key
More about
BILLIVING Integrations
Copy Integration
Copy Integration Programmatically
//install package
npm i apigum-sdk
//usage const {Integration, Apps, AppHelper} = require('apigum-sdk'); const less_annoying_crmCredentials = {}; const billivingCredentials {}; //set up credentials less_annoying_crmCredentials[Apps.Less_Annoying_CRM.Keys.Usercode] = "<< your less annoying crm usercode >>"; less_annoying_crmCredentials[Apps.Less_Annoying_CRM.Keys.Apitoken] = "<< your less annoying crm apitoken >>"; //set up credentials billivingCredentials[Apps.BILLIVING.Keys.Apikey] = "<< your billiving apikey >>"; //obtain api key at https://account.apigum.com/api const apiKey = "<< Your API key >>"; const integration = new Integration(apiKey); //create integration const less_annoying_crm = AppHelper.configure(Apps.Less_Annoying_CRM.AppId, this.less_annoying_crmCredentials); const billiving = AppHelper.configure(Apps.BILLIVING.AppId, this.billivingCredentials); integration.create(less_annoying_crm, billiving, Apps.Less_Annoying_CRM.Integrations.CREATE_BILLIVING_CLIENTS_FOR_NEW_LESSANNOYINGCRM_COMPANIES) .then(id => { // returns id of created integration }) .catch(err => console.log(err))