Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 11
Paul Dilyard edited this page Oct 2, 2015
·
6 revisions
POST/eventsAuth->admin{"title": String,// required"description": String,"start": Date,// required"end": Date,// required"type": String,"icon": String,"location": String,"group": String,"notify": Boolean}HTTP/1.1201Created{"_id": String,"title": String,"description": String,"start": Date,"end": Date,"type": String,"icon": String,"location": String,"group": String,"notify": Boolean}GET/events/:idHTTP/1.1200OK{"_id": String,"title": String,"description": String,"start": Date,"end": Date,"type": String,"icon": String,"location": String,"group": String,"notify": Boolean}Add the query string ?icons=true at the end to fetch a list of pre-built icon URLs.
GET/eventsHTTP/1.1200OK{"events": [{"_id": String,"title": String,"description": String,"start": Date,"end": Date,"type": String,"icon": String,"location": String,"group": String,"notify": Boolean}]}PATCH/events/:idAuth->admin{// all fields optional"title": String,"description": String,"start": Date,"end": Date,"type": String,"icon": String,"location": String,"group": String,"notify": Boolean}HTTP/1.1200OK{"_id": String,"title": String,"description": String,"start": Date,"end": Date,"type": String,"icon": String,"location": String,"group": String,"notify": Boolean}DELETE/events/:idAuth->adminHTTP/1.1200OK{"_id": String}