Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 373 Bytes

schedule-share-javascript-snippets.md

File metadata and controls

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

const client = Client.init(options);

const share = {
  notifyTeam: true,
  startDateTime: '2018-10-08T00:00:00.000Z',
  endDateTime: '2018-10-15T00:00:00.000Z'
};

await client.api('/teams/{teamId}/schedule/share')
	.version('beta')
	.post(share);