Sign In
or
Sign Up
Home
Applications
Recipes
Home
Applications
Recipes
Sign in
Sign up
Create
BILLIVING
client for new
Zoho Invoice
contacts
Copy Integration
JavaScript
Copy Integration Recipe
Step 1.
Enter your ZOHO INVOICE API credentials
About Zoho Invoice Credentials:
Log into your Zoho Invoice account
Click the gear icon (top-right) then select
Organization Profile
Your
organization_id
is placed in the form title
Your
authtoken
can be generated through
this link
For more information on authtoken
visit this page
More about
Zoho Invoice 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 zoho_invoiceCredentials = {}; const billivingCredentials {}; //set up credentials zoho_invoiceCredentials[Apps.Zoho_Invoice.Keys.Authtoken] = "<< your zoho invoice authtoken >>"; zoho_invoiceCredentials[Apps.Zoho_Invoice.Keys.Organization_Id] = "<< your zoho invoice organization_id >>"; //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 zoho_invoice = AppHelper.configure(Apps.Zoho_Invoice.AppId, this.zoho_invoiceCredentials); const billiving = AppHelper.configure(Apps.BILLIVING.AppId, this.billivingCredentials); integration.create(zoho_invoice, billiving, Apps.Zoho_Invoice.Integrations.CREATE_BILLIVING_CLIENT_FOR_NEW_ZOHO_INVOICE_CONTACTS) .then(id => { // returns id of created integration }) .catch(err => console.log(err))