const { setToken, Workspaces } = require('@evecloud/sdk');

setToken('TOKEN');

Workspaces.invoices.get('WORKSPACE_ID', 'INVOICE_ID').then(data => {
    console.log(data);
}).catch((error) => {
    console.log(error);
});