Workspaces
Get Workspace
Returns the workspace
const { setToken, Workspaces } = require('@evecloud/sdk');
setToken('TOKEN');
Workspaces.get('WORKSPACE_ID').then(data => {
console.log(data);
}).catch((error) => {
console.log(error);
});
Was this page helpful?
const { setToken, Workspaces } = require('@evecloud/sdk');
setToken('TOKEN');
Workspaces.get('WORKSPACE_ID').then(data => {
console.log(data);
}).catch((error) => {
console.log(error);
});