Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 495 Bytes

File metadata and controls

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

const client = Client.init(options);

const sharePointGroup = {
  '@odata.type': '#microsoft.graph.sharePointGroup',
  title: 'Sample Group',
  description: 'This is a sample description'
};

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