Create groups
const createdGroups = await client.groups.create([{ name: 'Developers', capabilities: [{ assetsAcl: { actions: ['READ'], scope: { all: {}} } }],}]); Copy
const createdGroups = await client.groups.create([{ name: 'Developers', capabilities: [{ assetsAcl: { actions: ['READ'], scope: { all: {}} } }],}]);
Delete groups
await client.groups.delete([921923342342323, 871621872721323]); Copy
await client.groups.delete([921923342342323, 871621872721323]);
List groups
const groups = await client.groups.list({ all: true }); Copy
const groups = await client.groups.list({ all: true });
Optional
Create groups