1.0.2 • Published 6 years ago

tdapi v1.0.2

Weekly downloads
21
License
ISC
Repository
github
Last release
6 years ago

TDAPI - NodeJS TeamDynamix API Wrapper

API wrapper for TeamDynamix.

To read about new features and fixes from a specific version, see the change log.

Quick-start

const TDAPI = require('tdapi');

// Authenticate
const TD = new TDAPI({
  baseUrl: 'https://api.teamdynamix.com/TDWebApi/api',
  credentials: {
    UserName: 'xxxxxx',
    Password: 'xxxxxx'
  }
});

// Example: search for users by name
TD.getUsers({ SearchText: 'vitale'})
  .then(users => {
    console.log(users);
  })
  .catch(err => {
    console.error(err);
  });

Documentation

TDAPI documentation

1.0.2

6 years ago

1.0.1

6 years ago

0.9.9

6 years ago

0.9.8

7 years ago

0.9.7

7 years ago

0.9.6

7 years ago

0.9.5

7 years ago

0.9.4

7 years ago

0.9.3

7 years ago

0.9.2

8 years ago

0.9.1

8 years ago

0.9.0

8 years ago

0.8.5

8 years ago

0.8.4

8 years ago

0.8.3

8 years ago

0.8.2

8 years ago

0.8.1

8 years ago

0.8.0

8 years ago

0.7.0

9 years ago

0.6.0

9 years ago

0.5.5

9 years ago

0.5.4

9 years ago

0.5.3

9 years ago

0.5.2

9 years ago

0.5.1

9 years ago

0.5.0

9 years ago

0.4.0

9 years ago

0.3.0

9 years ago

0.2.0

9 years ago

0.1.0

9 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago