Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 416 Bytes

File metadata and controls

27 lines (21 loc) · 416 Bytes
description Automatically generated file. DO NOT MODIFY
const options = {
	authProvider,
};

const client = Client.init(options);

const driveItem = {
  name: 'Just some files',
  '@microsoft.graph.conflictBehavior': 'rename',
  bundle: { },
  children: [
    { id: '1234asdf' },
    { id: '1234qwerty' }
  ]
};

await client.api('/drive/bundles')
	.version('beta')
	.post(driveItem);