1.31.0 • Published 10 months ago

@bowbridge/vtiger-js v1.31.0

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

vtiger-js

Javascript client for vtiger.com Rest API.

Installation

npm i @bowbridge/vtiger-js axios

 or

yarn add @bowbridge/vtiger-js axios

Peer Dependencies

This package uses axios as a http client. Please make sure that you have already installed it.

TypeScript

First class Typescript Support

Example

import { createClient } from '@bowbridge/vtiger-js';

const vtiger = createClient(url, username, password);

vtiger
  .from<Account>('Accounts')
  .select(['accountname', 'accountstatus'])
  .where('id', '=', '3x16554')
  .get()
  .then(res => {
    res.data.result.forEach(acc => {
      console.log(acc.accountname);
    });
  });
1.29.0

11 months ago

1.30.0

11 months ago

1.31.0

10 months ago

1.25.0

1 year ago

1.26.0

1 year ago

1.27.0

11 months ago

1.28.0

11 months ago

1.24.0

1 year ago

1.23.0

1 year ago

1.22.0

1 year ago

1.21.0

1 year ago

1.20.0

1 year ago

1.19.0

2 years ago

1.18.0

2 years ago

1.15.0

2 years ago

1.14.0

2 years ago

1.13.0

2 years ago

1.12.0

2 years ago

1.17.0

2 years ago

1.16.0

2 years ago

1.9.0

2 years ago

1.8.0

2 years ago

1.7.0

2 years ago

1.6.0

2 years ago

1.11.0

2 years ago

1.10.0

2 years ago

1.4.0

3 years ago

1.2.0

3 years ago

1.3.0

3 years ago

1.1.0

4 years ago

1.0.0

4 years ago