bullhorn

A typescript library for accessing Bullhorn REST API used by ringcentral

MIT 5 个版本
安装
npm install bullhorn
yarn add bullhorn
pnpm add bullhorn
bun add bullhorn
README

Bullhorn REST API TypeScript SDK

A simple Bullhorn REST API TypeScript SDK for both node and browser.

Installation

yarn add bullhorn

Getting Started

import BullhornClient from "bullhorn";

let client = new BullhornClient({
        server: 'xxx',
        authServer: 'xxx',
        clientId: 'xxx',
        secret: 'xxxx',
        redictionUrl: 'xxx'
    });
client.login('username', 'password').then(()=>{
    // Get an entity by id
    return client.getEntity("Note", "noteId", ["field list"]).then(note => {
        console.log("Note", note);
    });
}).then();
版本列表
0.3.1 2017-08-10
0.3.0 2017-08-03
0.2.2 2017-04-10
0.2.1 2017-04-10
0.2.0 2017-04-10