Node interface for the Lokalise APIv2.
View the Project on GitHub lokalise/node-lokalise-api
const teams = await lokaliseApi.teams().list({ page: 2, limit: 1 });
teams.items[0].team_id;
const teamId = 12345;
const team = await lokaliseApi.teams().get(teamId);
team.team_id; // => 12345
team.name; // => "My Team"