| description |
Automatically generated file. DO NOT MODIFY |
const options = {
authProvider,
};
const client = Client.init(options);
const event = {
subject: 'Celebrate Thanksgiving',
body: {
contentType: 'HTML',
content: 'Let\'s get together!'
},
start: {
dateTime: '2015-11-26T18:00:00',
timeZone: 'Pacific Standard Time'
},
end: {
dateTime: '2015-11-26T23:00:00',
timeZone: 'Pacific Standard Time'
},
attendees: [
{
emailAddress: {
address: 'Terrie@contoso.com',
name: 'Terrie Barrera'
},
type: 'Required'
}
],
singleValueExtendedProperties: [
{
id: 'String {66f5a359-4659-4830-9070-00040ec6ac6e} Name Fun',
value: 'Food'
}
]
};
await client.api('/me/events')
.post(event);