1.0.2 • Published 3 years ago

mattermost-api-client v1.0.2

Weekly downloads
-
License
-
Repository
github
Last release
3 years ago

Mattermost API Client UNOFICIAL

Usage example:

import MattermostClient from 'mattermost-api-client';

const client = new MattermostClient({
  baseUrl: 'https://yourchaturl.com',
  login_id: 'yourEmail',
  password: 'yourPassword',
});

const user = await client.login();
console.log(user);

const teams = await client.teams.getTeamsByUser(user.id);
console.log(teams);

const channels = await client.channels.getChannelsByUserAndTeam(
  user.id,
  teams[0].id,
);
console.log(channels);

This project is discontinued.

The official Mattermost API Javascript driver is available here.

1.0.2

3 years ago

1.0.1

3 years ago

0.0.8

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago