1.0.2 • Published 1 year ago

mattermost-api-client v1.0.2

Weekly downloads
-
License
-
Repository
github
Last release
1 year 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

1 year ago

1.0.1

1 year ago

0.0.8

1 year ago

0.0.7

1 year ago

0.0.6

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago