Lokalise APIv2 Node SDK

Node interface for the Lokalise APIv2.

View the Project on GitHub lokalise/node-lokalise-api




Teams

Team attributes

Fetch teams

API doc

const teams = await lokaliseApi.teams().list({ page: 2, limit: 1 });

teams.items[0].team_id;

Fetch a single team

API doc

const teamId = 12345;
const team = await lokaliseApi.teams().get(teamId);
		
team.team_id; // => 12345
team.name; // => "My Team"