# bullhorn.ts

> A typescript library for accessing Bullhorn REST API used by ringcentral

Latest version **0.1.3** (published 2016-12-09) · 0 weekly downloads

## Install

```sh
npm install bullhorn.ts
pnpm add bullhorn.ts
yarn add bullhorn.ts
bun add bullhorn.ts
```

## Health

**Score 20/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities.

Warnings: low downloads; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.3 |
| Published | 2016-12-09 |
| First published | 2016-12-05 |
| Weekly downloads | 0 |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | fenfeizeng |

## Links

- npm: https://www.npmjs.com/package/bullhorn.ts
- npm.io page: https://npm.io/package/bullhorn.ts

## Dependencies (2)

- [isomorphic-fetch](https://npm.io/package/isomorphic-fetch.md) ^2.2.1
- [google-libphonenumber](https://npm.io/package/google-libphonenumber.md) ^2.0.5

## Recent versions

- 0.1.3 (latest) — 2016-12-09
- 0.1.2 — 2016-12-08
- 0.1.1 — 2016-12-05

## README

# Bullhorn REST API typescript client

For both node and browser.

## Installation

`npm install bullhorn.ts`

## Getting Started

```typescript
import BullhornClient from "bullhorn.ts";

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();
```

---
_Source: https://npm.io/package/bullhorn.ts · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
