Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 512 Bytes

File metadata and controls

23 lines (17 loc) · 512 Bytes
description Automatically generated file. DO NOT MODIFY
const options = {
	authProvider,
};

const client = Client.init(options);

const sharePointGroup = {
  '@odata.type': '#microsoft.graph.sharePointGroup',
  title: 'This is the new group title',
  description: 'Updated group description'
};

await client.api('/storage/fileStorage/containers/b!ISJs1WRro0y0EWgkUYcktDa0mE8zSlFEqFzqRn70Zwp1CEtDEBZgQICPkRbil_5Z/sharePointGroups/12')
	.version('beta')
	.update(sharePointGroup);