Node interface for the Lokalise APIv2.
View the Project on GitHub lokalise/node-lokalise-api
Team user billing details attributes
const team_id = 1234;
const details = await lokaliseApi.teamUserBillingDetails().get(team_id);
details.company;
details.address1;
details.zip;
const team_id = 1234;
const details = await lokaliseApi.teamUserBillingDetails().create(
{
billing_email: "hello@example.com",
country_code: "LV",
zip: "LV-1234",
},
{ team_id: team_id }
);
details.billing_email;
details.country_code;
const team_id = 1234;
const details = await lokaliseApi
.teamUserBillingDetails()
.update(team_id, {
vatnumber: "123",
address1: "Line 1",
address2: "Line 2",
country_code: "LV",
billing_email: "updated@example.com",
zip: "LV-1234",
});
details.billing_email;
details.country_code;