clinq-crm-bridge
TypeScript icon, indicating that this package has built-in type declarations

4.2.1 • Public • Published

CLINQ CRM-Bridge Server

This is the CLINQ CRM-Bridge Server. It provides a unified way to connect the CLINQ browser extension to any CRM software.

Bootstrapping a new bridge

If you want to bootstrap a new CRM-Bridge you can use one of these repositories:

Installation

npm install --save clinq-crm-bridge
# or 
yarn add clinq-crm-bridge

Quick Start

const bridge = require("clinq-crm-bridge");
 
const adapter = {
    getContacts: async ({ apiKey, apiUrl }) => {
        // TODO: Fetch contacts from CRM using apiKey and apiUrl or throw on error
        return [
            {
                name: "Benjamin Kluck",
                phoneNumbers: [
                    {
                        label: "Mobile",
                        phoneNumber: "+4915799912345"
                    }
                ]
            }
        ];
    }
};
 
bridge.start(adapter);

/clinq-crm-bridge/

    Package Sidebar

    Install

    npm i clinq-crm-bridge

    Weekly Downloads

    1

    Version

    4.2.1

    License

    Apache-2.0

    Unpacked Size

    29 kB

    Total Files

    41

    Last publish

    Collaborators

    • fuglu