REST routes overview
This page gives you the list of all REST routes with their short description and links to pages with more details.
Before you get down to each route description, it's recommended to read about Working with Server.
For quick navigation you can use either the tabs below or the side menu:
- The side menu shows routes grouped by HTTP methods
- To quickly find which routes to use for which operations, use the tabs below
- events
- calendars
- uploads
Use the next routes to perform operations on events:
HTTP method | Route | Description |
---|---|---|
GET | /events | Gets data on all events and returns a json object with an array of events objects |
POST | /events | Creates a new event and returns a json object with the event ID in it |
PUT | /events | Updates data on an event |
DELETE | /events | Deletes data on an event |
Use the next routes to perform operations on calendars (event types):
HTTP method | Route | Description |
---|---|---|
GET | /calendars | Gets data on all calendars and returns a json object with an array of calendars objects |
POST | /calendars | Creates a new calendar (event type) and returns a json object with the calendar ID in it |
PUT | /calendars | Updates data on a calendar (event type) |
DELETE | /calendars | Deletes data on a calendar (event type) |