LifeBac / intakeq-api

The IntakeQ API wrapper

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

IntakeQ API

A wrapper around the IntakeQ APIs. Written in TypeScript.

Usage

npm install --save @lifebac/intakeq

Simply instantiate the API with your API Key and you should be able to start using it.

import { IntakeQApi } from '@lifebac/intakeq';

const IntakeQClient = new IntakeQApi('api-key-in-here');

const listClients = async () => {
  const res = await IntakeQClient.Client.listClients(
    { search: 'john.smith@example.com' },
    true
  );

  // Do something with the result
  console.log(res);
};

listClients();

About

The IntakeQ API wrapper


Languages

Language:TypeScript 94.4%Language:JavaScript 2.9%Language:Shell 2.7%