Workspaces
Update Workspace
Updates the workspace
const { setToken, Workspaces } = require('@evecloud/sdk');
setToken('TOKEN');
Workspaces.update('WORKSPACE_ID', {
name: 'Acme Inc.'
}).then(data => {
console.log(data);
}).catch((error) => {
console.log(error);
});
Was this page helpful?
const { setToken, Workspaces } = require('@evecloud/sdk');
setToken('TOKEN');
Workspaces.update('WORKSPACE_ID', {
name: 'Acme Inc.'
}).then(data => {
console.log(data);
}).catch((error) => {
console.log(error);
});