Requests
- Authorize
- Meetings
- MyMeetings
- MyTasks
- Tasks
- Users
- WebHooks
Objects
Enums
|
JSMeetingUI
A partial Meeting object with only the start/end and title of the meeting
Property name |
Value |
Description |
End |
DateTime |
End date and time of the meeting in UTC |
Id |
String |
The Unique id of the object. Objects will have a guid as id.
Objects created in MeetingBooster before the API was introduced may have an integer as id.
When you create a new object you should always give it a guid. |
Start |
DateTime |
Start date and time of the meeting in UTC |
Title |
String |
The Meeting title |
JSON Example:
{
"Title": "Test",
"Start": "2017-05-17T09:00:00Z",
"End": "2017-05-17T11:00:00Z",
"Id": "0ed052d0-70b5-4eb3-8fcf-0c2ea0bc27cc"
}
|