Node interface for the Lokalise APIv2.
View the Project on GitHub lokalise/node-lokalise-api
const cards = await lokaliseApi.paymentCards().list({ page: 2, limit: 1 });
cards.items[0].card_id;
const card = await lokaliseApi.paymentCards().get(card_id);
card.last4;
const card = await lokaliseApi.paymentCards().create({
number: '4242424242424242',
cvc: 123,
exp_month: 10,
exp_year: 2030
});
card.brand;
const result = await lokaliseApi.paymentCards().delete(card_id);
result.card_deleted