Invoices
Get Invoice
Returns the workspace invoice
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);
});
Was this page helpful?
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);
});