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