Skip to content

A meteor package to create, update and delete calendar events using the office 365 REST api

Notifications You must be signed in to change notification settings

djluck/office365-events

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#Office-365-events

A meteor package that exposes a fluent interface for working with the office 365 events REST API.

##How do I use this package? Please refer to the Wiki

##Sample code var createdEvent = Office365.event .runByUser(userId) .subject("This is the subject") .bodyHtml("This is the body Its using html!") .attendees(Meteor.users.find().fetch()) .location("The test room") .startsAt(moment().add(2, "days").tz("Europe/London")) .endsAt(moment().add(2, "days").add(1, "hour").tz("Europe/London")) .requireAResponse(false) .create();

The Wiki contains more examples and notes on using this package.

##Unit tests You can run the package unit tests with meteor test-packages wiseguyeh:office-365-events

About

A meteor package to create, update and delete calendar events using the office 365 REST api

Resources

Stars

Watchers

Forks

Packages

No packages published