Scheduler Service v1.0.0
Scroll down for code samples, example requests and responses. Select a language for code samples from the tabs above or the mobile navigation menu.
Scheduler Microservice
Base URLs:
Authentication¶
- HTTP Authentication, scheme: bearer
AttachmentController
AttachmentController.count¶
Code samples
GET /attachments/count
Permissions |
---|
ViewAttachment |
15 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
where | query | object | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Attachment model count | loopback.Count |
AttachmentController.replaceById¶
Code samples
PUT /attachments/{id}
Permissions |
---|
UpdateAttachment |
17 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
body | body | Attachment | false | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | Attachment PUT success | None |
AttachmentController.updateById¶
Code samples
PATCH /attachments/{id}
Permissions |
---|
UpdateAttachment |
17 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
body | body | AttachmentPartial | false | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | Attachment PATCH success | None |
AttachmentController.findById¶
Code samples
GET /attachments/{id}
Permissions |
---|
ViewAttachment |
15 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
filter | query | attachments.Filter | false | none |
Example responses
200 Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 |
|
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Attachment model instance | AttachmentWithRelations |
AttachmentController.deleteById¶
Code samples
DELETE /attachments/{id}
Permissions |
---|
DeleteAttachment |
18 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | Attachment DELETE success | None |
AttachmentController.create¶
Code samples
POST /attachments
Permissions |
---|
CreateAttachment |
16 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
body | body | NewAttachment | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Attachment model instance | Attachment |
AttachmentController.updateAll¶
Code samples
PATCH /attachments
Permissions |
---|
UpdateAttachment |
17 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
where | query | object | false | none |
body | body | AttachmentPartial | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Attachment PATCH success count | loopback.Count |
AttachmentController.find¶
Code samples
GET /attachments
Permissions |
---|
ViewAttachment |
15 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
filter | query | attachments.Filter1 | false | none |
Example responses
200 Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
|
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Array of Attachment model instances | Inline |
Response Schema
Status Code 200
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
anonymous | [AttachmentWithRelations] | false | none | [(tsType: AttachmentWithRelations, schemaOptions: { includeRelations: true })] |
» AttachmentWithRelations | AttachmentWithRelations | false | none | (tsType: AttachmentWithRelations, schemaOptions: { includeRelations: true }) |
»» deleted | boolean | false | none | none |
»» deletedOn | string(date-time)¦null | false | none | none |
»» deletedBy | string¦null | false | none | none |
»» createdOn | string(date-time) | false | none | none |
»» modifiedOn | string(date-time) | false | none | none |
»» createdBy | string | false | none | none |
»» modifiedBy | string | false | none | none |
»» id | string | false | none | none |
»» fileUrl | string | true | none | none |
»» iconLink | string | false | none | none |
»» mimeType | string | false | none | none |
»» title | string | false | none | none |
»» eventId | string | true | none | none |
»» extId | string | false | none | none |
»» extMetadata | object | false | none | none |
»» event | EventWithRelations | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»»» deleted | boolean | false | none | none |
»»» deletedOn | string(date-time)¦null | false | none | none |
»»» deletedBy | string¦null | false | none | none |
»»» createdOn | string(date-time) | false | none | none |
»»» modifiedOn | string(date-time) | false | none | none |
»»» createdBy | string | false | none | none |
»»» modifiedBy | string | false | none | none |
»»» id | string | false | none | none |
»»» bgColor | string | false | none | none |
»»» description | string | false | none | none |
»»» endDateTime | string(date-time) | false | none | none |
»»» fgColor | string | false | none | none |
»»» iCalUid | string | false | none | none |
»»» isFullDayEvent | boolean | false | none | none |
»»» isLocked | boolean | false | none | none |
»»» link | string | false | none | none |
»»» location | string | false | none | none |
»»» meetingLink | string | false | none | none |
»»» identifier | string | false | none | none |
»»» startDateTime | string(date-time) | false | none | none |
»»» status | string | false | none | none |
»»» summary | string | false | none | none |
»»» timezone | string | false | none | none |
»»» calendarId | string | true | none | none |
»»» parentEventId | string | false | none | none |
»»» extId | string | false | none | none |
»»» extMetadata | object | false | none | none |
»»» calendar | CalendarWithRelations | false | none | (tsType: CalendarWithRelations, schemaOptions: { includeRelations: true }) |
»»»» deleted | boolean | false | none | none |
»»»» deletedOn | string(date-time)¦null | false | none | none |
»»»» deletedBy | string¦null | false | none | none |
»»»» createdOn | string(date-time) | false | none | none |
»»»» modifiedOn | string(date-time) | false | none | none |
»»»» createdBy | string | false | none | none |
»»»» modifiedBy | string | false | none | none |
»»»» id | string | false | none | none |
»»»» source | string | false | none | none |
»»»» enableWorkingHours | boolean | false | none | none |
»»»» location | string | false | none | none |
»»»» identifier | string | true | none | none |
»»»» summary | string | false | none | none |
»»»» timezone | string | false | none | none |
»»»» extId | string | false | none | none |
»»»» extMetadata | object | false | none | none |
»»»» events | [EventWithRelations] | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»»»»» EventWithRelations | EventWithRelations | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»»»» workingHours | [WorkingHourWithRelations] | false | none | (tsType: WorkingHourWithRelations, schemaOptions: { includeRelations: true }) |
»»»»» WorkingHourWithRelations | WorkingHourWithRelations | false | none | (tsType: WorkingHourWithRelations, schemaOptions: { includeRelations: true }) |
»»»»»» deleted | boolean | false | none | none |
»»»»»» deletedOn | string(date-time)¦null | false | none | none |
»»»»»» deletedBy | string¦null | false | none | none |
»»»»»» createdOn | string(date-time) | false | none | none |
»»»»»» modifiedOn | string(date-time) | false | none | none |
»»»»»» createdBy | string | false | none | none |
»»»»»» modifiedBy | string | false | none | none |
»»»»»» id | string | false | none | none |
»»»»»» dayOfWeek | number | false | none | none |
»»»»»» end | string | false | none | none |
»»»»»» start | string | false | none | none |
»»»»»» calendarId | string | true | none | none |
»»»»»» extId | string | false | none | none |
»»»»»» extMetadata | object | false | none | none |
»»»»»» calendar | CalendarWithRelations | false | none | (tsType: CalendarWithRelations, schemaOptions: { includeRelations: true }) |
»»»»»» foreignKey | any | false | none | none |
»»»» subscriptions | [SubscriptionWithRelations] | false | none | (tsType: SubscriptionWithRelations, schemaOptions: { includeRelations: true }) |
»»»»» SubscriptionWithRelations | SubscriptionWithRelations | false | none | (tsType: SubscriptionWithRelations, schemaOptions: { includeRelations: true }) |
»»»»»» deleted | boolean | false | none | none |
»»»»»» deletedOn | string(date-time)¦null | false | none | none |
»»»»»» deletedBy | string¦null | false | none | none |
»»»»»» createdOn | string(date-time) | false | none | none |
»»»»»» modifiedOn | string(date-time) | false | none | none |
»»»»»» createdBy | string | false | none | none |
»»»»»» modifiedBy | string | false | none | none |
»»»»»» id | string | false | none | none |
»»»»»» accessRole | string | false | none | none |
»»»»»» bgColor | string | false | none | none |
»»»»»» fgColor | string | false | none | none |
»»»»»» isHidden | boolean | false | none | none |
»»»»»» isPrimary | boolean | false | none | none |
»»»»»» identifier | string | true | none | none |
»»»»»» defaultReminders | object | false | none | none |
»»»»»» notificationSettings | object | false | none | none |
»»»»»» calendarId | string | true | none | none |
»»»»»» extId | string | false | none | none |
»»»»»» extMetadata | object | false | none | none |
»»»»»» calendar | CalendarWithRelations | false | none | (tsType: CalendarWithRelations, schemaOptions: { includeRelations: true }) |
»»»»»» foreignKey | any | false | none | none |
»»» foreignKey | any | false | none | none |
»»» parentEvent | EventWithRelations | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»»» attendees | [AttendeeWithRelations] | false | none | (tsType: AttendeeWithRelations, schemaOptions: { includeRelations: true }) |
»»»» AttendeeWithRelations | AttendeeWithRelations | false | none | (tsType: AttendeeWithRelations, schemaOptions: { includeRelations: true }) |
»»»»» deleted | boolean | false | none | none |
»»»»» deletedOn | string(date-time)¦null | false | none | none |
»»»»» deletedBy | string¦null | false | none | none |
»»»»» createdOn | string(date-time) | false | none | none |
»»»»» modifiedOn | string(date-time) | false | none | none |
»»»»» createdBy | string | false | none | none |
»»»»» modifiedBy | string | false | none | none |
»»»»» id | string | false | none | none |
»»»»» identifier | string | true | none | none |
»»»»» isOptional | boolean | false | none | none |
»»»»» isOrganizer | boolean | false | none | none |
»»»»» messages | string | false | none | none |
»»»»» responseStatus | string | false | none | none |
»»»»» eventId | string | true | none | none |
»»»»» extId | string | false | none | none |
»»»»» extMetadata | object | false | none | none |
»»»»» event | EventWithRelations | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»»»»» foreignKey | any | false | none | none |
»»» attachments | [AttachmentWithRelations] | false | none | (tsType: AttachmentWithRelations, schemaOptions: { includeRelations: true }) |
»»»» AttachmentWithRelations | AttachmentWithRelations | false | none | (tsType: AttachmentWithRelations, schemaOptions: { includeRelations: true }) |
»» foreignKey | any | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
status | confirmed |
status | tentative |
status | cancelled |
status | completed |
dayOfWeek | 0 |
dayOfWeek | 1 |
dayOfWeek | 2 |
dayOfWeek | 3 |
dayOfWeek | 4 |
dayOfWeek | 5 |
dayOfWeek | 6 |
accessRole | freeBusyReader |
accessRole | reader |
accessRole | writer |
accessRole | owner |
responseStatus | needsAction |
responseStatus | tentative |
responseStatus | accepted |
responseStatus | declined |
AttendeeController
AttendeeController.count¶
Code samples
GET /attendees/count
Permissions |
---|
ViewAttendee |
19 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
where | query | object | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Attendee model count | loopback.Count |
AttendeeController.replaceById¶
Code samples
PUT /attendees/{id}
Permissions |
---|
UpdateAttendee |
21 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
body | body | Attendee | false | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | Attendee PUT success | None |
AttendeeController.updateById¶
Code samples
PATCH /attendees/{id}
Permissions |
---|
UpdateAttendee |
21 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
body | body | AttendeePartial | false | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | Attendee PATCH success | None |
AttendeeController.findById¶
Code samples
GET /attendees/{id}
Permissions |
---|
ViewAttendee |
19 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
filter | query | attendees.Filter | false | none |
Example responses
200 Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 |
|
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Attendee model instance | AttendeeWithRelations |
AttendeeController.deleteById¶
Code samples
DELETE /attendees/{id}
Permissions |
---|
DeleteAttendee |
22 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | Attendee DELETE success | None |
AttendeeController.create¶
Code samples
POST /attendees
Permissions |
---|
CreateAttendee |
20 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
body | body | NewAttendee | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Attendee model instance | Attendee |
AttendeeController.updateAll¶
Code samples
PATCH /attendees
Permissions |
---|
UpdateAttendee |
21 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
where | query | object | false | none |
body | body | AttendeePartial | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Attendee PATCH success count | loopback.Count |
AttendeeController.find¶
Code samples
GET /attendees
Permissions |
---|
ViewAttendee |
19 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
filter | query | attendees.Filter1 | false | none |
Example responses
200 Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
|
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Array of Attendee model instances | Inline |
Response Schema
Status Code 200
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
anonymous | [AttendeeWithRelations] | false | none | [(tsType: AttendeeWithRelations, schemaOptions: { includeRelations: true })] |
» AttendeeWithRelations | AttendeeWithRelations | false | none | (tsType: AttendeeWithRelations, schemaOptions: { includeRelations: true }) |
»» deleted | boolean | false | none | none |
»» deletedOn | string(date-time)¦null | false | none | none |
»» deletedBy | string¦null | false | none | none |
»» createdOn | string(date-time) | false | none | none |
»» modifiedOn | string(date-time) | false | none | none |
»» createdBy | string | false | none | none |
»» modifiedBy | string | false | none | none |
»» id | string | false | none | none |
»» identifier | string | true | none | none |
»» isOptional | boolean | false | none | none |
»» isOrganizer | boolean | false | none | none |
»» messages | string | false | none | none |
»» responseStatus | string | false | none | none |
»» eventId | string | true | none | none |
»» extId | string | false | none | none |
»» extMetadata | object | false | none | none |
»» event | EventWithRelations | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»»» deleted | boolean | false | none | none |
»»» deletedOn | string(date-time)¦null | false | none | none |
»»» deletedBy | string¦null | false | none | none |
»»» createdOn | string(date-time) | false | none | none |
»»» modifiedOn | string(date-time) | false | none | none |
»»» createdBy | string | false | none | none |
»»» modifiedBy | string | false | none | none |
»»» id | string | false | none | none |
»»» bgColor | string | false | none | none |
»»» description | string | false | none | none |
»»» endDateTime | string(date-time) | false | none | none |
»»» fgColor | string | false | none | none |
»»» iCalUid | string | false | none | none |
»»» isFullDayEvent | boolean | false | none | none |
»»» isLocked | boolean | false | none | none |
»»» link | string | false | none | none |
»»» location | string | false | none | none |
»»» meetingLink | string | false | none | none |
»»» identifier | string | false | none | none |
»»» startDateTime | string(date-time) | false | none | none |
»»» status | string | false | none | none |
»»» summary | string | false | none | none |
»»» timezone | string | false | none | none |
»»» calendarId | string | true | none | none |
»»» parentEventId | string | false | none | none |
»»» extId | string | false | none | none |
»»» extMetadata | object | false | none | none |
»»» calendar | CalendarWithRelations | false | none | (tsType: CalendarWithRelations, schemaOptions: { includeRelations: true }) |
»»»» deleted | boolean | false | none | none |
»»»» deletedOn | string(date-time)¦null | false | none | none |
»»»» deletedBy | string¦null | false | none | none |
»»»» createdOn | string(date-time) | false | none | none |
»»»» modifiedOn | string(date-time) | false | none | none |
»»»» createdBy | string | false | none | none |
»»»» modifiedBy | string | false | none | none |
»»»» id | string | false | none | none |
»»»» source | string | false | none | none |
»»»» enableWorkingHours | boolean | false | none | none |
»»»» location | string | false | none | none |
»»»» identifier | string | true | none | none |
»»»» summary | string | false | none | none |
»»»» timezone | string | false | none | none |
»»»» extId | string | false | none | none |
»»»» extMetadata | object | false | none | none |
»»»» events | [EventWithRelations] | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»»»»» EventWithRelations | EventWithRelations | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»»»» workingHours | [WorkingHourWithRelations] | false | none | (tsType: WorkingHourWithRelations, schemaOptions: { includeRelations: true }) |
»»»»» WorkingHourWithRelations | WorkingHourWithRelations | false | none | (tsType: WorkingHourWithRelations, schemaOptions: { includeRelations: true }) |
»»»»»» deleted | boolean | false | none | none |
»»»»»» deletedOn | string(date-time)¦null | false | none | none |
»»»»»» deletedBy | string¦null | false | none | none |
»»»»»» createdOn | string(date-time) | false | none | none |
»»»»»» modifiedOn | string(date-time) | false | none | none |
»»»»»» createdBy | string | false | none | none |
»»»»»» modifiedBy | string | false | none | none |
»»»»»» id | string | false | none | none |
»»»»»» dayOfWeek | number | false | none | none |
»»»»»» end | string | false | none | none |
»»»»»» start | string | false | none | none |
»»»»»» calendarId | string | true | none | none |
»»»»»» extId | string | false | none | none |
»»»»»» extMetadata | object | false | none | none |
»»»»»» calendar | CalendarWithRelations | false | none | (tsType: CalendarWithRelations, schemaOptions: { includeRelations: true }) |
»»»»»» foreignKey | any | false | none | none |
»»»» subscriptions | [SubscriptionWithRelations] | false | none | (tsType: SubscriptionWithRelations, schemaOptions: { includeRelations: true }) |
»»»»» SubscriptionWithRelations | SubscriptionWithRelations | false | none | (tsType: SubscriptionWithRelations, schemaOptions: { includeRelations: true }) |
»»»»»» deleted | boolean | false | none | none |
»»»»»» deletedOn | string(date-time)¦null | false | none | none |
»»»»»» deletedBy | string¦null | false | none | none |
»»»»»» createdOn | string(date-time) | false | none | none |
»»»»»» modifiedOn | string(date-time) | false | none | none |
»»»»»» createdBy | string | false | none | none |
»»»»»» modifiedBy | string | false | none | none |
»»»»»» id | string | false | none | none |
»»»»»» accessRole | string | false | none | none |
»»»»»» bgColor | string | false | none | none |
»»»»»» fgColor | string | false | none | none |
»»»»»» isHidden | boolean | false | none | none |
»»»»»» isPrimary | boolean | false | none | none |
»»»»»» identifier | string | true | none | none |
»»»»»» defaultReminders | object | false | none | none |
»»»»»» notificationSettings | object | false | none | none |
»»»»»» calendarId | string | true | none | none |
»»»»»» extId | string | false | none | none |
»»»»»» extMetadata | object | false | none | none |
»»»»»» calendar | CalendarWithRelations | false | none | (tsType: CalendarWithRelations, schemaOptions: { includeRelations: true }) |
»»»»»» foreignKey | any | false | none | none |
»»» foreignKey | any | false | none | none |
»»» parentEvent | EventWithRelations | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»»» attendees | [AttendeeWithRelations] | false | none | (tsType: AttendeeWithRelations, schemaOptions: { includeRelations: true }) |
»»»» AttendeeWithRelations | AttendeeWithRelations | false | none | (tsType: AttendeeWithRelations, schemaOptions: { includeRelations: true }) |
»»» attachments | [AttachmentWithRelations] | false | none | (tsType: AttachmentWithRelations, schemaOptions: { includeRelations: true }) |
»»»» AttachmentWithRelations | AttachmentWithRelations | false | none | (tsType: AttachmentWithRelations, schemaOptions: { includeRelations: true }) |
»»»»» deleted | boolean | false | none | none |
»»»»» deletedOn | string(date-time)¦null | false | none | none |
»»»»» deletedBy | string¦null | false | none | none |
»»»»» createdOn | string(date-time) | false | none | none |
»»»»» modifiedOn | string(date-time) | false | none | none |
»»»»» createdBy | string | false | none | none |
»»»»» modifiedBy | string | false | none | none |
»»»»» id | string | false | none | none |
»»»»» fileUrl | string | true | none | none |
»»»»» iconLink | string | false | none | none |
»»»»» mimeType | string | false | none | none |
»»»»» title | string | false | none | none |
»»»»» eventId | string | true | none | none |
»»»»» extId | string | false | none | none |
»»»»» extMetadata | object | false | none | none |
»»»»» event | EventWithRelations | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»»»»» foreignKey | any | false | none | none |
»» foreignKey | any | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
responseStatus | needsAction |
responseStatus | tentative |
responseStatus | accepted |
responseStatus | declined |
status | confirmed |
status | tentative |
status | cancelled |
status | completed |
dayOfWeek | 0 |
dayOfWeek | 1 |
dayOfWeek | 2 |
dayOfWeek | 3 |
dayOfWeek | 4 |
dayOfWeek | 5 |
dayOfWeek | 6 |
accessRole | freeBusyReader |
accessRole | reader |
accessRole | writer |
accessRole | owner |
CalendarController
CalendarController.createWithSubscription¶
Code samples
POST /calendars/calendarSubscription
Permissions |
---|
CreateCalendar |
12 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
body | body | NewCalendar | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Calendar model instance | CalendarDTO |
CalendarController.count¶
Code samples
GET /calendars/count
Permissions |
---|
ViewCalendar |
11 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
where | query | object | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Calendar model count | loopback.Count |
CalendarController.replaceById¶
Code samples
PUT /calendars/{id}
This api is to update the calendar by passing an id. This action will be allowed only to the owner of the calendar or the admin. To identify the ‘owner’ we will check for the email passed in the token and the corresponding access level, whereas to identify the admin we will check for the permission.
Permissions |
---|
UpdateCalendar |
13 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
body | body | CalendarDTO | false | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | Calendar PUT success | None |
CalendarController.updateById¶
Code samples
PATCH /calendars/{id}
Permissions |
---|
UpdateCalendar |
13 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
body | body | CalendarPartial | false | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | Calendar PATCH success | None |
CalendarController.findById¶
Code samples
GET /calendars/{id}
These requests will be available to everyone in the event to look at.
Permissions |
---|
ViewCalendar |
11 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
filter | query | calendars.Filter | false | none |
Example responses
200 Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 |
|
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Calendar model instance | CalendarWithRelations |
CalendarController.deleteById¶
Code samples
DELETE /calendars/{id}
This api is to update the calendar by passing an id. This action will be allowed only to the owner of the calendar or the admin. To identify the ‘owner’ we will check for the email passed in the token and the corresponding access level, whereas to identify the admin we will check for the permission.
Permissions |
---|
DeleteCalendar |
14 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | Calendar DELETE success | None |
CalendarController.create¶
Code samples
POST /calendars
This is an api to create a calendar for any user. Recommendation: Use this while adding a user to the main application, in order to create a primary calendar for that particular user.
Permissions |
---|
CreateCalendar |
12 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
body | body | NewCalendar | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Calendar model instance | Calendar |
CalendarController.updateAll¶
Code samples
PATCH /calendars
Permissions |
---|
UpdateCalendar |
13 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
where | query | object | false | none |
body | body | CalendarPartial | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Calendar PATCH success count | loopback.Count |
CalendarController.find¶
Code samples
GET /calendars
These requests will be available to everyone in the event to look at.
Permissions |
---|
ViewCalendar |
11 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
filter | query | calendars.Filter1 | false | none |
Example responses
200 Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
|
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Array of Calendar model instances | Inline |
Response Schema
Status Code 200
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
anonymous | [CalendarWithRelations] | false | none | [(tsType: CalendarWithRelations, schemaOptions: { includeRelations: true })] |
» CalendarWithRelations | CalendarWithRelations | false | none | (tsType: CalendarWithRelations, schemaOptions: { includeRelations: true }) |
»» deleted | boolean | false | none | none |
»» deletedOn | string(date-time)¦null | false | none | none |
»» deletedBy | string¦null | false | none | none |
»» createdOn | string(date-time) | false | none | none |
»» modifiedOn | string(date-time) | false | none | none |
»» createdBy | string | false | none | none |
»» modifiedBy | string | false | none | none |
»» id | string | false | none | none |
»» source | string | false | none | none |
»» enableWorkingHours | boolean | false | none | none |
»» location | string | false | none | none |
»» identifier | string | true | none | none |
»» summary | string | false | none | none |
»» timezone | string | false | none | none |
»» extId | string | false | none | none |
»» extMetadata | object | false | none | none |
»» events | [EventWithRelations] | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»»» EventWithRelations | EventWithRelations | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»»»» deleted | boolean | false | none | none |
»»»» deletedOn | string(date-time)¦null | false | none | none |
»»»» deletedBy | string¦null | false | none | none |
»»»» createdOn | string(date-time) | false | none | none |
»»»» modifiedOn | string(date-time) | false | none | none |
»»»» createdBy | string | false | none | none |
»»»» modifiedBy | string | false | none | none |
»»»» id | string | false | none | none |
»»»» bgColor | string | false | none | none |
»»»» description | string | false | none | none |
»»»» endDateTime | string(date-time) | false | none | none |
»»»» fgColor | string | false | none | none |
»»»» iCalUid | string | false | none | none |
»»»» isFullDayEvent | boolean | false | none | none |
»»»» isLocked | boolean | false | none | none |
»»»» link | string | false | none | none |
»»»» location | string | false | none | none |
»»»» meetingLink | string | false | none | none |
»»»» identifier | string | false | none | none |
»»»» startDateTime | string(date-time) | false | none | none |
»»»» status | string | false | none | none |
»»»» summary | string | false | none | none |
»»»» timezone | string | false | none | none |
»»»» calendarId | string | true | none | none |
»»»» parentEventId | string | false | none | none |
»»»» extId | string | false | none | none |
»»»» extMetadata | object | false | none | none |
»»»» calendar | CalendarWithRelations | false | none | (tsType: CalendarWithRelations, schemaOptions: { includeRelations: true }) |
»»»» foreignKey | any | false | none | none |
»»»» parentEvent | EventWithRelations | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»»»» attendees | [AttendeeWithRelations] | false | none | (tsType: AttendeeWithRelations, schemaOptions: { includeRelations: true }) |
»»»»» AttendeeWithRelations | AttendeeWithRelations | false | none | (tsType: AttendeeWithRelations, schemaOptions: { includeRelations: true }) |
»»»»»» deleted | boolean | false | none | none |
»»»»»» deletedOn | string(date-time)¦null | false | none | none |
»»»»»» deletedBy | string¦null | false | none | none |
»»»»»» createdOn | string(date-time) | false | none | none |
»»»»»» modifiedOn | string(date-time) | false | none | none |
»»»»»» createdBy | string | false | none | none |
»»»»»» modifiedBy | string | false | none | none |
»»»»»» id | string | false | none | none |
»»»»»» identifier | string | true | none | none |
»»»»»» isOptional | boolean | false | none | none |
»»»»»» isOrganizer | boolean | false | none | none |
»»»»»» messages | string | false | none | none |
»»»»»» responseStatus | string | false | none | none |
»»»»»» eventId | string | true | none | none |
»»»»»» extId | string | false | none | none |
»»»»»» extMetadata | object | false | none | none |
»»»»»» event | EventWithRelations | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»»»»»» foreignKey | any | false | none | none |
»»»» attachments | [AttachmentWithRelations] | false | none | (tsType: AttachmentWithRelations, schemaOptions: { includeRelations: true }) |
»»»»» AttachmentWithRelations | AttachmentWithRelations | false | none | (tsType: AttachmentWithRelations, schemaOptions: { includeRelations: true }) |
»»»»»» deleted | boolean | false | none | none |
»»»»»» deletedOn | string(date-time)¦null | false | none | none |
»»»»»» deletedBy | string¦null | false | none | none |
»»»»»» createdOn | string(date-time) | false | none | none |
»»»»»» modifiedOn | string(date-time) | false | none | none |
»»»»»» createdBy | string | false | none | none |
»»»»»» modifiedBy | string | false | none | none |
»»»»»» id | string | false | none | none |
»»»»»» fileUrl | string | true | none | none |
»»»»»» iconLink | string | false | none | none |
»»»»»» mimeType | string | false | none | none |
»»»»»» title | string | false | none | none |
»»»»»» eventId | string | true | none | none |
»»»»»» extId | string | false | none | none |
»»»»»» extMetadata | object | false | none | none |
»»»»»» event | EventWithRelations | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»»»»»» foreignKey | any | false | none | none |
»» workingHours | [WorkingHourWithRelations] | false | none | (tsType: WorkingHourWithRelations, schemaOptions: { includeRelations: true }) |
»»» WorkingHourWithRelations | WorkingHourWithRelations | false | none | (tsType: WorkingHourWithRelations, schemaOptions: { includeRelations: true }) |
»»»» deleted | boolean | false | none | none |
»»»» deletedOn | string(date-time)¦null | false | none | none |
»»»» deletedBy | string¦null | false | none | none |
»»»» createdOn | string(date-time) | false | none | none |
»»»» modifiedOn | string(date-time) | false | none | none |
»»»» createdBy | string | false | none | none |
»»»» modifiedBy | string | false | none | none |
»»»» id | string | false | none | none |
»»»» dayOfWeek | number | false | none | none |
»»»» end | string | false | none | none |
»»»» start | string | false | none | none |
»»»» calendarId | string | true | none | none |
»»»» extId | string | false | none | none |
»»»» extMetadata | object | false | none | none |
»»»» calendar | CalendarWithRelations | false | none | (tsType: CalendarWithRelations, schemaOptions: { includeRelations: true }) |
»»»» foreignKey | any | false | none | none |
»» subscriptions | [SubscriptionWithRelations] | false | none | (tsType: SubscriptionWithRelations, schemaOptions: { includeRelations: true }) |
»»» SubscriptionWithRelations | SubscriptionWithRelations | false | none | (tsType: SubscriptionWithRelations, schemaOptions: { includeRelations: true }) |
»»»» deleted | boolean | false | none | none |
»»»» deletedOn | string(date-time)¦null | false | none | none |
»»»» deletedBy | string¦null | false | none | none |
»»»» createdOn | string(date-time) | false | none | none |
»»»» modifiedOn | string(date-time) | false | none | none |
»»»» createdBy | string | false | none | none |
»»»» modifiedBy | string | false | none | none |
»»»» id | string | false | none | none |
»»»» accessRole | string | false | none | none |
»»»» bgColor | string | false | none | none |
»»»» fgColor | string | false | none | none |
»»»» isHidden | boolean | false | none | none |
»»»» isPrimary | boolean | false | none | none |
»»»» identifier | string | true | none | none |
»»»» defaultReminders | object | false | none | none |
»»»» notificationSettings | object | false | none | none |
»»»» calendarId | string | true | none | none |
»»»» extId | string | false | none | none |
»»»» extMetadata | object | false | none | none |
»»»» calendar | CalendarWithRelations | false | none | (tsType: CalendarWithRelations, schemaOptions: { includeRelations: true }) |
»»»» foreignKey | any | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
status | confirmed |
status | tentative |
status | cancelled |
status | completed |
responseStatus | needsAction |
responseStatus | tentative |
responseStatus | accepted |
responseStatus | declined |
dayOfWeek | 0 |
dayOfWeek | 1 |
dayOfWeek | 2 |
dayOfWeek | 3 |
dayOfWeek | 4 |
dayOfWeek | 5 |
dayOfWeek | 6 |
accessRole | freeBusyReader |
accessRole | reader |
accessRole | writer |
accessRole | owner |
SubscriptionController
SubscriptionController.findMe¶
Code samples
GET /calendars/subscriptions/me
Permissions |
---|
ViewSubscription |
2 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
filter | query | subscriptions.Filter | false | none |
Example responses
200 Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
|
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Array of Subscription model instances | Inline |
Response Schema
Status Code 200
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
anonymous | [SubscriptionWithRelations] | false | none | [(tsType: SubscriptionWithRelations, schemaOptions: { includeRelations: true })] |
» SubscriptionWithRelations | SubscriptionWithRelations | false | none | (tsType: SubscriptionWithRelations, schemaOptions: { includeRelations: true }) |
»» deleted | boolean | false | none | none |
»» deletedOn | string(date-time)¦null | false | none | none |
»» deletedBy | string¦null | false | none | none |
»» createdOn | string(date-time) | false | none | none |
»» modifiedOn | string(date-time) | false | none | none |
»» createdBy | string | false | none | none |
»» modifiedBy | string | false | none | none |
»» id | string | false | none | none |
»» accessRole | string | false | none | none |
»» bgColor | string | false | none | none |
»» fgColor | string | false | none | none |
»» isHidden | boolean | false | none | none |
»» isPrimary | boolean | false | none | none |
»» identifier | string | true | none | none |
»» defaultReminders | object | false | none | none |
»» notificationSettings | object | false | none | none |
»» calendarId | string | true | none | none |
»» extId | string | false | none | none |
»» extMetadata | object | false | none | none |
»» calendar | CalendarWithRelations | false | none | (tsType: CalendarWithRelations, schemaOptions: { includeRelations: true }) |
»»» deleted | boolean | false | none | none |
»»» deletedOn | string(date-time)¦null | false | none | none |
»»» deletedBy | string¦null | false | none | none |
»»» createdOn | string(date-time) | false | none | none |
»»» modifiedOn | string(date-time) | false | none | none |
»»» createdBy | string | false | none | none |
»»» modifiedBy | string | false | none | none |
»»» id | string | false | none | none |
»»» source | string | false | none | none |
»»» enableWorkingHours | boolean | false | none | none |
»»» location | string | false | none | none |
»»» identifier | string | true | none | none |
»»» summary | string | false | none | none |
»»» timezone | string | false | none | none |
»»» extId | string | false | none | none |
»»» extMetadata | object | false | none | none |
»»» events | [EventWithRelations] | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»»»» EventWithRelations | EventWithRelations | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»»»»» deleted | boolean | false | none | none |
»»»»» deletedOn | string(date-time)¦null | false | none | none |
»»»»» deletedBy | string¦null | false | none | none |
»»»»» createdOn | string(date-time) | false | none | none |
»»»»» modifiedOn | string(date-time) | false | none | none |
»»»»» createdBy | string | false | none | none |
»»»»» modifiedBy | string | false | none | none |
»»»»» id | string | false | none | none |
»»»»» bgColor | string | false | none | none |
»»»»» description | string | false | none | none |
»»»»» endDateTime | string(date-time) | false | none | none |
»»»»» fgColor | string | false | none | none |
»»»»» iCalUid | string | false | none | none |
»»»»» isFullDayEvent | boolean | false | none | none |
»»»»» isLocked | boolean | false | none | none |
»»»»» link | string | false | none | none |
»»»»» location | string | false | none | none |
»»»»» meetingLink | string | false | none | none |
»»»»» identifier | string | false | none | none |
»»»»» startDateTime | string(date-time) | false | none | none |
»»»»» status | string | false | none | none |
»»»»» summary | string | false | none | none |
»»»»» timezone | string | false | none | none |
»»»»» calendarId | string | true | none | none |
»»»»» parentEventId | string | false | none | none |
»»»»» extId | string | false | none | none |
»»»»» extMetadata | object | false | none | none |
»»»»» calendar | CalendarWithRelations | false | none | (tsType: CalendarWithRelations, schemaOptions: { includeRelations: true }) |
»»»»» foreignKey | any | false | none | none |
»»»»» parentEvent | EventWithRelations | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»»»»» attendees | [AttendeeWithRelations] | false | none | (tsType: AttendeeWithRelations, schemaOptions: { includeRelations: true }) |
»»»»»» AttendeeWithRelations | AttendeeWithRelations | false | none | (tsType: AttendeeWithRelations, schemaOptions: { includeRelations: true }) |
»»»»»»» deleted | boolean | false | none | none |
»»»»»»» deletedOn | string(date-time)¦null | false | none | none |
»»»»»»» deletedBy | string¦null | false | none | none |
»»»»»»» createdOn | string(date-time) | false | none | none |
»»»»»»» modifiedOn | string(date-time) | false | none | none |
»»»»»»» createdBy | string | false | none | none |
»»»»»»» modifiedBy | string | false | none | none |
»»»»»»» id | string | false | none | none |
»»»»»»» identifier | string | true | none | none |
»»»»»»» isOptional | boolean | false | none | none |
»»»»»»» isOrganizer | boolean | false | none | none |
»»»»»»» messages | string | false | none | none |
»»»»»»» responseStatus | string | false | none | none |
»»»»»»» eventId | string | true | none | none |
»»»»»»» extId | string | false | none | none |
»»»»»»» extMetadata | object | false | none | none |
»»»»»»» event | EventWithRelations | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»»»»»»» foreignKey | any | false | none | none |
»»»»» attachments | [AttachmentWithRelations] | false | none | (tsType: AttachmentWithRelations, schemaOptions: { includeRelations: true }) |
»»»»»» AttachmentWithRelations | AttachmentWithRelations | false | none | (tsType: AttachmentWithRelations, schemaOptions: { includeRelations: true }) |
»»»»»»» deleted | boolean | false | none | none |
»»»»»»» deletedOn | string(date-time)¦null | false | none | none |
»»»»»»» deletedBy | string¦null | false | none | none |
»»»»»»» createdOn | string(date-time) | false | none | none |
»»»»»»» modifiedOn | string(date-time) | false | none | none |
»»»»»»» createdBy | string | false | none | none |
»»»»»»» modifiedBy | string | false | none | none |
»»»»»»» id | string | false | none | none |
»»»»»»» fileUrl | string | true | none | none |
»»»»»»» iconLink | string | false | none | none |
»»»»»»» mimeType | string | false | none | none |
»»»»»»» title | string | false | none | none |
»»»»»»» eventId | string | true | none | none |
»»»»»»» extId | string | false | none | none |
»»»»»»» extMetadata | object | false | none | none |
»»»»»»» event | EventWithRelations | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»»»»»»» foreignKey | any | false | none | none |
»»» workingHours | [WorkingHourWithRelations] | false | none | (tsType: WorkingHourWithRelations, schemaOptions: { includeRelations: true }) |
»»»» WorkingHourWithRelations | WorkingHourWithRelations | false | none | (tsType: WorkingHourWithRelations, schemaOptions: { includeRelations: true }) |
»»»»» deleted | boolean | false | none | none |
»»»»» deletedOn | string(date-time)¦null | false | none | none |
»»»»» deletedBy | string¦null | false | none | none |
»»»»» createdOn | string(date-time) | false | none | none |
»»»»» modifiedOn | string(date-time) | false | none | none |
»»»»» createdBy | string | false | none | none |
»»»»» modifiedBy | string | false | none | none |
»»»»» id | string | false | none | none |
»»»»» dayOfWeek | number | false | none | none |
»»»»» end | string | false | none | none |
»»»»» start | string | false | none | none |
»»»»» calendarId | string | true | none | none |
»»»»» extId | string | false | none | none |
»»»»» extMetadata | object | false | none | none |
»»»»» calendar | CalendarWithRelations | false | none | (tsType: CalendarWithRelations, schemaOptions: { includeRelations: true }) |
»»»»» foreignKey | any | false | none | none |
»»» subscriptions | [SubscriptionWithRelations] | false | none | (tsType: SubscriptionWithRelations, schemaOptions: { includeRelations: true }) |
»»»» SubscriptionWithRelations | SubscriptionWithRelations | false | none | (tsType: SubscriptionWithRelations, schemaOptions: { includeRelations: true }) |
»» foreignKey | any | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
accessRole | freeBusyReader |
accessRole | reader |
accessRole | writer |
accessRole | owner |
status | confirmed |
status | tentative |
status | cancelled |
status | completed |
responseStatus | needsAction |
responseStatus | tentative |
responseStatus | accepted |
responseStatus | declined |
dayOfWeek | 0 |
dayOfWeek | 1 |
dayOfWeek | 2 |
dayOfWeek | 3 |
dayOfWeek | 4 |
dayOfWeek | 5 |
dayOfWeek | 6 |
SubscriptionController.count¶
Code samples
GET /subscriptions/count
Permissions |
---|
ViewSubscription |
2 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
where | query | object | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Subscription model count | loopback.Count |
SubscriptionController.replaceById¶
Code samples
PUT /subscriptions/{id}
Permissions |
---|
UpdateSubscription |
4 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
body | body | Subscription | false | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | Subscription PUT success | None |
SubscriptionController.updateById¶
Code samples
PATCH /subscriptions/{id}
Permissions |
---|
UpdateSubscription |
4 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
body | body | SubscriptionPartial | false | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | Subscription PATCH success | None |
SubscriptionController.findById¶
Code samples
GET /subscriptions/{id}
Permissions |
---|
ViewSubscription |
2 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
filter | query | subscriptions.Filter1 | false | none |
Example responses
200 Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 |
|
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Subscription model instance | SubscriptionWithRelations |
SubscriptionController.deleteById¶
Code samples
DELETE /subscriptions/{id}
Permissions |
---|
DeleteSubscription |
5 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | Subscription DELETE success | None |
SubscriptionController.create¶
Code samples
POST /subscriptions
Permissions |
---|
CreateSubscription |
3 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
body | body | NewSubscription | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Subscription model instance | Subscription |
SubscriptionController.updateAll¶
Code samples
PATCH /subscriptions
Permissions |
---|
UpdateSubscription |
4 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
where | query | object | false | none |
body | body | SubscriptionPartial | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Subscription PATCH success count | loopback.Count |
SubscriptionController.find¶
Code samples
GET /subscriptions
Permissions |
---|
ViewSubscription |
2 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
filter | query | subscriptions.Filter | false | none |
Example responses
200 Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
|
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Array of Subscription model instances | Inline |
Response Schema
Status Code 200
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
anonymous | [SubscriptionWithRelations] | false | none | [(tsType: SubscriptionWithRelations, schemaOptions: { includeRelations: true })] |
» SubscriptionWithRelations | SubscriptionWithRelations | false | none | (tsType: SubscriptionWithRelations, schemaOptions: { includeRelations: true }) |
»» deleted | boolean | false | none | none |
»» deletedOn | string(date-time)¦null | false | none | none |
»» deletedBy | string¦null | false | none | none |
»» createdOn | string(date-time) | false | none | none |
»» modifiedOn | string(date-time) | false | none | none |
»» createdBy | string | false | none | none |
»» modifiedBy | string | false | none | none |
»» id | string | false | none | none |
»» accessRole | string | false | none | none |
»» bgColor | string | false | none | none |
»» fgColor | string | false | none | none |
»» isHidden | boolean | false | none | none |
»» isPrimary | boolean | false | none | none |
»» identifier | string | true | none | none |
»» defaultReminders | object | false | none | none |
»» notificationSettings | object | false | none | none |
»» calendarId | string | true | none | none |
»» extId | string | false | none | none |
»» extMetadata | object | false | none | none |
»» calendar | CalendarWithRelations | false | none | (tsType: CalendarWithRelations, schemaOptions: { includeRelations: true }) |
»»» deleted | boolean | false | none | none |
»»» deletedOn | string(date-time)¦null | false | none | none |
»»» deletedBy | string¦null | false | none | none |
»»» createdOn | string(date-time) | false | none | none |
»»» modifiedOn | string(date-time) | false | none | none |
»»» createdBy | string | false | none | none |
»»» modifiedBy | string | false | none | none |
»»» id | string | false | none | none |
»»» source | string | false | none | none |
»»» enableWorkingHours | boolean | false | none | none |
»»» location | string | false | none | none |
»»» identifier | string | true | none | none |
»»» summary | string | false | none | none |
»»» timezone | string | false | none | none |
»»» extId | string | false | none | none |
»»» extMetadata | object | false | none | none |
»»» events | [EventWithRelations] | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»»»» EventWithRelations | EventWithRelations | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»»»»» deleted | boolean | false | none | none |
»»»»» deletedOn | string(date-time)¦null | false | none | none |
»»»»» deletedBy | string¦null | false | none | none |
»»»»» createdOn | string(date-time) | false | none | none |
»»»»» modifiedOn | string(date-time) | false | none | none |
»»»»» createdBy | string | false | none | none |
»»»»» modifiedBy | string | false | none | none |
»»»»» id | string | false | none | none |
»»»»» bgColor | string | false | none | none |
»»»»» description | string | false | none | none |
»»»»» endDateTime | string(date-time) | false | none | none |
»»»»» fgColor | string | false | none | none |
»»»»» iCalUid | string | false | none | none |
»»»»» isFullDayEvent | boolean | false | none | none |
»»»»» isLocked | boolean | false | none | none |
»»»»» link | string | false | none | none |
»»»»» location | string | false | none | none |
»»»»» meetingLink | string | false | none | none |
»»»»» identifier | string | false | none | none |
»»»»» startDateTime | string(date-time) | false | none | none |
»»»»» status | string | false | none | none |
»»»»» summary | string | false | none | none |
»»»»» timezone | string | false | none | none |
»»»»» calendarId | string | true | none | none |
»»»»» parentEventId | string | false | none | none |
»»»»» extId | string | false | none | none |
»»»»» extMetadata | object | false | none | none |
»»»»» calendar | CalendarWithRelations | false | none | (tsType: CalendarWithRelations, schemaOptions: { includeRelations: true }) |
»»»»» foreignKey | any | false | none | none |
»»»»» parentEvent | EventWithRelations | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»»»»» attendees | [AttendeeWithRelations] | false | none | (tsType: AttendeeWithRelations, schemaOptions: { includeRelations: true }) |
»»»»»» AttendeeWithRelations | AttendeeWithRelations | false | none | (tsType: AttendeeWithRelations, schemaOptions: { includeRelations: true }) |
»»»»»»» deleted | boolean | false | none | none |
»»»»»»» deletedOn | string(date-time)¦null | false | none | none |
»»»»»»» deletedBy | string¦null | false | none | none |
»»»»»»» createdOn | string(date-time) | false | none | none |
»»»»»»» modifiedOn | string(date-time) | false | none | none |
»»»»»»» createdBy | string | false | none | none |
»»»»»»» modifiedBy | string | false | none | none |
»»»»»»» id | string | false | none | none |
»»»»»»» identifier | string | true | none | none |
»»»»»»» isOptional | boolean | false | none | none |
»»»»»»» isOrganizer | boolean | false | none | none |
»»»»»»» messages | string | false | none | none |
»»»»»»» responseStatus | string | false | none | none |
»»»»»»» eventId | string | true | none | none |
»»»»»»» extId | string | false | none | none |
»»»»»»» extMetadata | object | false | none | none |
»»»»»»» event | EventWithRelations | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»»»»»»» foreignKey | any | false | none | none |
»»»»» attachments | [AttachmentWithRelations] | false | none | (tsType: AttachmentWithRelations, schemaOptions: { includeRelations: true }) |
»»»»»» AttachmentWithRelations | AttachmentWithRelations | false | none | (tsType: AttachmentWithRelations, schemaOptions: { includeRelations: true }) |
»»»»»»» deleted | boolean | false | none | none |
»»»»»»» deletedOn | string(date-time)¦null | false | none | none |
»»»»»»» deletedBy | string¦null | false | none | none |
»»»»»»» createdOn | string(date-time) | false | none | none |
»»»»»»» modifiedOn | string(date-time) | false | none | none |
»»»»»»» createdBy | string | false | none | none |
»»»»»»» modifiedBy | string | false | none | none |
»»»»»»» id | string | false | none | none |
»»»»»»» fileUrl | string | true | none | none |
»»»»»»» iconLink | string | false | none | none |
»»»»»»» mimeType | string | false | none | none |
»»»»»»» title | string | false | none | none |
»»»»»»» eventId | string | true | none | none |
»»»»»»» extId | string | false | none | none |
»»»»»»» extMetadata | object | false | none | none |
»»»»»»» event | EventWithRelations | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»»»»»»» foreignKey | any | false | none | none |
»»» workingHours | [WorkingHourWithRelations] | false | none | (tsType: WorkingHourWithRelations, schemaOptions: { includeRelations: true }) |
»»»» WorkingHourWithRelations | WorkingHourWithRelations | false | none | (tsType: WorkingHourWithRelations, schemaOptions: { includeRelations: true }) |
»»»»» deleted | boolean | false | none | none |
»»»»» deletedOn | string(date-time)¦null | false | none | none |
»»»»» deletedBy | string¦null | false | none | none |
»»»»» createdOn | string(date-time) | false | none | none |
»»»»» modifiedOn | string(date-time) | false | none | none |
»»»»» createdBy | string | false | none | none |
»»»»» modifiedBy | string | false | none | none |
»»»»» id | string | false | none | none |
»»»»» dayOfWeek | number | false | none | none |
»»»»» end | string | false | none | none |
»»»»» start | string | false | none | none |
»»»»» calendarId | string | true | none | none |
»»»»» extId | string | false | none | none |
»»»»» extMetadata | object | false | none | none |
»»»»» calendar | CalendarWithRelations | false | none | (tsType: CalendarWithRelations, schemaOptions: { includeRelations: true }) |
»»»»» foreignKey | any | false | none | none |
»»» subscriptions | [SubscriptionWithRelations] | false | none | (tsType: SubscriptionWithRelations, schemaOptions: { includeRelations: true }) |
»»»» SubscriptionWithRelations | SubscriptionWithRelations | false | none | (tsType: SubscriptionWithRelations, schemaOptions: { includeRelations: true }) |
»» foreignKey | any | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
accessRole | freeBusyReader |
accessRole | reader |
accessRole | writer |
accessRole | owner |
status | confirmed |
status | tentative |
status | cancelled |
status | completed |
responseStatus | needsAction |
responseStatus | tentative |
responseStatus | accepted |
responseStatus | declined |
dayOfWeek | 0 |
dayOfWeek | 1 |
dayOfWeek | 2 |
dayOfWeek | 3 |
dayOfWeek | 4 |
dayOfWeek | 5 |
dayOfWeek | 6 |
CalendarEventController
CalendarEventController.create¶
Code samples
POST /calendars/{id}/events
Permissions |
---|
CreateEvent |
7 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
body | body | NewEventInCalendar | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Calendar model instance | Event |
CalendarEventController.patch¶
Code samples
PATCH /calendars/{id}/events
Permissions |
---|
UpdateEvent |
8 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
where | query | object | false | none |
body | body | EventPartial | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Calendar.Event PATCH success count | loopback.Count |
CalendarEventController.find¶
Code samples
GET /calendars/{id}/events
Permissions |
---|
ViewEvent |
6 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
filter | query | object | false | none |
timeMax | query | string(date-time) | false | none |
timeMin | query | string(date-time) | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Array of Calendar has many Event | Inline |
Response Schema
Status Code 200
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
anonymous | [Event] | false | none | none |
» Event | Event | false | none | none |
»» deleted | boolean | false | none | none |
»» deletedOn | string(date-time)¦null | false | none | none |
»» deletedBy | string¦null | false | none | none |
»» createdOn | string(date-time) | false | none | none |
»» modifiedOn | string(date-time) | false | none | none |
»» createdBy | string | false | none | none |
»» modifiedBy | string | false | none | none |
»» id | string | false | none | none |
»» bgColor | string | false | none | none |
»» description | string | false | none | none |
»» endDateTime | string(date-time) | false | none | none |
»» fgColor | string | false | none | none |
»» iCalUid | string | false | none | none |
»» isFullDayEvent | boolean | false | none | none |
»» isLocked | boolean | false | none | none |
»» link | string | false | none | none |
»» location | string | false | none | none |
»» meetingLink | string | false | none | none |
»» identifier | string | false | none | none |
»» startDateTime | string(date-time) | false | none | none |
»» status | string | false | none | none |
»» summary | string | false | none | none |
»» timezone | string | false | none | none |
»» calendarId | string | true | none | none |
»» parentEventId | string | false | none | none |
»» extId | string | false | none | none |
»» extMetadata | object | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
status | confirmed |
status | tentative |
status | cancelled |
status | completed |
CalendarEventController.delete¶
Code samples
DELETE /calendars/{id}/events
Permissions |
---|
DeleteEvent |
9 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
where | query | object | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Calendar.Event DELETE success count | loopback.Count |
CalendarSubscriptionController
CalendarSubscriptionController.create¶
Code samples
POST /calendars/{id}/subscriptions
This is an api to create a calendar subscription for any calendar.
Permissions |
---|
CreateSubscription |
3 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
body | body | NewSubscriptionInCalendar | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Calendar model instance | Subscription |
CalendarSubscriptionController.patch¶
Code samples
PATCH /calendars/{id}/subscriptions
This api is to update the calendar subscription by passing an id
.
This action will be allowed only to the owner of the calendar or the admin.
To identify the owner
we will check for the email passed in the token and
the corresponding access level, whereas to identify the admin we will check
for the permission.
Permissions |
---|
UpdateSubscription |
4 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
where | query | object | false | none |
body | body | SubscriptionPartial | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Calendar.Subscription PATCH success count | loopback.Count |
CalendarSubscriptionController.find¶
Code samples
GET /calendars/{id}/subscriptions
These requests will be available to the owner of the subscription.
Permissions |
---|
ViewSubscription |
2 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
filter | query | object | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Array of Calendar has many Subscriptions | Inline |
Response Schema
Status Code 200
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
anonymous | [Subscription] | false | none | none |
» Subscription | Subscription | false | none | none |
»» deleted | boolean | false | none | none |
»» deletedOn | string(date-time)¦null | false | none | none |
»» deletedBy | string¦null | false | none | none |
»» createdOn | string(date-time) | false | none | none |
»» modifiedOn | string(date-time) | false | none | none |
»» createdBy | string | false | none | none |
»» modifiedBy | string | false | none | none |
»» id | string | false | none | none |
»» accessRole | string | false | none | none |
»» bgColor | string | false | none | none |
»» fgColor | string | false | none | none |
»» isHidden | boolean | false | none | none |
»» isPrimary | boolean | false | none | none |
»» identifier | string | true | none | none |
»» defaultReminders | object | false | none | none |
»» notificationSettings | object | false | none | none |
»» calendarId | string | true | none | none |
»» extId | string | false | none | none |
»» extMetadata | object | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
accessRole | freeBusyReader |
accessRole | reader |
accessRole | writer |
accessRole | owner |
CalendarSubscriptionController.delete¶
Code samples
DELETE /calendars/{id}/subscriptions
This api is to update the calendar subscription by passing an id. This action will be allowed only to the owner of the calendar or the admin. To identify the ‘owner’ we will check for the email passed in the token and the corresponding access level, whereas to identify the admin we will check for the permission.
Permissions |
---|
DeleteSubscription |
5 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
where | query | object | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Calendar.Subscription DELETE success count | loopback.Count |
CalendarWorkingHourController
CalendarWorkingHourController.create¶
Code samples
POST /calendars/{id}/working-hours
This is an api to create a calendar for any user.
Permissions |
---|
CreateWorkingHour |
32 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
body | body | NewWorkingHourInCalendar | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Calendar model instance | WorkingHour |
CalendarWorkingHourController.patch¶
Code samples
PATCH /calendars/{id}/working-hours
Permissions |
---|
UpdateWorkingHour |
33 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
where | query | object | false | none |
body | body | WorkingHourPartial | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Calendar.WorkingHour PATCH success count | loopback.Count |
CalendarWorkingHourController.find¶
Code samples
GET /calendars/{id}/working-hours
Permissions |
---|
ViewWorkingHour |
31 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
filter | query | object | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Array of Calendar has many WorkingHour | Inline |
Response Schema
Status Code 200
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
anonymous | [WorkingHour] | false | none | none |
» WorkingHour | WorkingHour | false | none | none |
»» deleted | boolean | false | none | none |
»» deletedOn | string(date-time)¦null | false | none | none |
»» deletedBy | string¦null | false | none | none |
»» createdOn | string(date-time) | false | none | none |
»» modifiedOn | string(date-time) | false | none | none |
»» createdBy | string | false | none | none |
»» modifiedBy | string | false | none | none |
»» id | string | false | none | none |
»» dayOfWeek | number | false | none | none |
»» end | string | false | none | none |
»» start | string | false | none | none |
»» calendarId | string | true | none | none |
»» extId | string | false | none | none |
»» extMetadata | object | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
dayOfWeek | 0 |
dayOfWeek | 1 |
dayOfWeek | 2 |
dayOfWeek | 3 |
dayOfWeek | 4 |
dayOfWeek | 5 |
dayOfWeek | 6 |
CalendarWorkingHourController.delete¶
Code samples
DELETE /calendars/{id}/working-hours
Permissions |
---|
DeleteWorkingHour |
34 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
where | query | object | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Calendar.WorkingHour DELETE success count | loopback.Count |
EventController
EventController.count¶
Code samples
GET /events/count
Permissions |
---|
ViewEvent |
6 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
where | query | object | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Event model count | loopback.Count |
EventController.getFeeBusyStatus¶
Code samples
GET /events/freeBusy
Permissions |
---|
ViewEvent |
ViewAttendee |
6 |
19 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
body | body | FreeBusyRequest | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Event model freeBusy | Event |
EventController.hardDeleteById¶
Code samples
DELETE /events/{id}/hard
Permissions |
---|
HardDeleteEvent |
10 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | Event HARD DELETE success | None |
EventController.replaceById¶
Code samples
PUT /events/{id}
This api will be responsible for making any updates on an event. This action is only allowed to the organizer or the admin(based on permission).
Permissions |
---|
UpdateEvent |
8 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
body | body | Event | false | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | Event PUT success | None |
EventController.updateById¶
Code samples
PATCH /events/{id}
This api will be responsible for making any updates on an event. This action is only allowed to the organizer or the admin(based on permission).
Permissions |
---|
UpdateEvent |
8 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
body | body | EventPartial | false | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | Event PATCH success | None |
EventController.findById¶
Code samples
GET /events/{id}
This api will return events data based on the id. Sending the data of participants will be optional and will depend on the query.
Permissions |
---|
ViewEvent |
6 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
filter | query | events.Filter | false | none |
Example responses
200 Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 |
|
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Event model instance | EventWithRelations |
EventController.deleteById¶
Code samples
DELETE /events/{id}
Api to delete the event based on id. The action is only allowed to the organiser or the admin(based on permission).
Permissions |
---|
DeleteEvent |
9 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | Event DELETE success | None |
EventController.create¶
Code samples
POST /events
While an organizer creates an event, we get participants details along with it. This api will check for slot availability of all the participants in that particular time slot. If the slot is free the event will be created. Events can be scheduled on behalf of someone else, In this case we will be saving the creator details (generally the organiser is the creator themselves, so we will be keeping the organiser and created_by the same).
Permissions |
---|
CreateEvent |
7 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
body | body | NewEvent | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Event model instance | Event |
EventController.updateAll¶
Code samples
PATCH /events
Permissions |
---|
UpdateEvent |
8 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
where | query | object | false | none |
body | body | EventPartial | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Event PATCH success count | loopback.Count |
EventController.find¶
Code samples
GET /events
This api will return the events data, based on the filter provided. Sending the data of participants will be optional and will depend on the query.
Permissions |
---|
ViewEvent |
6 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
filter | query | events_attendees_view.Filter | false | none |
Example responses
200 Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
|
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Array of Event model instances | Inline |
Response Schema
Status Code 200
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
anonymous | [EventWithRelations] | false | none | [(tsType: EventWithRelations, schemaOptions: { includeRelations: true })] |
» EventWithRelations | EventWithRelations | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»» deleted | boolean | false | none | none |
»» deletedOn | string(date-time)¦null | false | none | none |
»» deletedBy | string¦null | false | none | none |
»» createdOn | string(date-time) | false | none | none |
»» modifiedOn | string(date-time) | false | none | none |
»» createdBy | string | false | none | none |
»» modifiedBy | string | false | none | none |
»» id | string | false | none | none |
»» bgColor | string | false | none | none |
»» description | string | false | none | none |
»» endDateTime | string(date-time) | false | none | none |
»» fgColor | string | false | none | none |
»» iCalUid | string | false | none | none |
»» isFullDayEvent | boolean | false | none | none |
»» isLocked | boolean | false | none | none |
»» link | string | false | none | none |
»» location | string | false | none | none |
»» meetingLink | string | false | none | none |
»» identifier | string | false | none | none |
»» startDateTime | string(date-time) | false | none | none |
»» status | string | false | none | none |
»» summary | string | false | none | none |
»» timezone | string | false | none | none |
»» calendarId | string | true | none | none |
»» parentEventId | string | false | none | none |
»» extId | string | false | none | none |
»» extMetadata | object | false | none | none |
»» calendar | CalendarWithRelations | false | none | (tsType: CalendarWithRelations, schemaOptions: { includeRelations: true }) |
»»» deleted | boolean | false | none | none |
»»» deletedOn | string(date-time)¦null | false | none | none |
»»» deletedBy | string¦null | false | none | none |
»»» createdOn | string(date-time) | false | none | none |
»»» modifiedOn | string(date-time) | false | none | none |
»»» createdBy | string | false | none | none |
»»» modifiedBy | string | false | none | none |
»»» id | string | false | none | none |
»»» source | string | false | none | none |
»»» enableWorkingHours | boolean | false | none | none |
»»» location | string | false | none | none |
»»» identifier | string | true | none | none |
»»» summary | string | false | none | none |
»»» timezone | string | false | none | none |
»»» extId | string | false | none | none |
»»» extMetadata | object | false | none | none |
»»» events | [EventWithRelations] | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»»»» EventWithRelations | EventWithRelations | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»»» workingHours | [WorkingHourWithRelations] | false | none | (tsType: WorkingHourWithRelations, schemaOptions: { includeRelations: true }) |
»»»» WorkingHourWithRelations | WorkingHourWithRelations | false | none | (tsType: WorkingHourWithRelations, schemaOptions: { includeRelations: true }) |
»»»»» deleted | boolean | false | none | none |
»»»»» deletedOn | string(date-time)¦null | false | none | none |
»»»»» deletedBy | string¦null | false | none | none |
»»»»» createdOn | string(date-time) | false | none | none |
»»»»» modifiedOn | string(date-time) | false | none | none |
»»»»» createdBy | string | false | none | none |
»»»»» modifiedBy | string | false | none | none |
»»»»» id | string | false | none | none |
»»»»» dayOfWeek | number | false | none | none |
»»»»» end | string | false | none | none |
»»»»» start | string | false | none | none |
»»»»» calendarId | string | true | none | none |
»»»»» extId | string | false | none | none |
»»»»» extMetadata | object | false | none | none |
»»»»» calendar | CalendarWithRelations | false | none | (tsType: CalendarWithRelations, schemaOptions: { includeRelations: true }) |
»»»»» foreignKey | any | false | none | none |
»»» subscriptions | [SubscriptionWithRelations] | false | none | (tsType: SubscriptionWithRelations, schemaOptions: { includeRelations: true }) |
»»»» SubscriptionWithRelations | SubscriptionWithRelations | false | none | (tsType: SubscriptionWithRelations, schemaOptions: { includeRelations: true }) |
»»»»» deleted | boolean | false | none | none |
»»»»» deletedOn | string(date-time)¦null | false | none | none |
»»»»» deletedBy | string¦null | false | none | none |
»»»»» createdOn | string(date-time) | false | none | none |
»»»»» modifiedOn | string(date-time) | false | none | none |
»»»»» createdBy | string | false | none | none |
»»»»» modifiedBy | string | false | none | none |
»»»»» id | string | false | none | none |
»»»»» accessRole | string | false | none | none |
»»»»» bgColor | string | false | none | none |
»»»»» fgColor | string | false | none | none |
»»»»» isHidden | boolean | false | none | none |
»»»»» isPrimary | boolean | false | none | none |
»»»»» identifier | string | true | none | none |
»»»»» defaultReminders | object | false | none | none |
»»»»» notificationSettings | object | false | none | none |
»»»»» calendarId | string | true | none | none |
»»»»» extId | string | false | none | none |
»»»»» extMetadata | object | false | none | none |
»»»»» calendar | CalendarWithRelations | false | none | (tsType: CalendarWithRelations, schemaOptions: { includeRelations: true }) |
»»»»» foreignKey | any | false | none | none |
»» foreignKey | any | false | none | none |
»» parentEvent | EventWithRelations | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»» attendees | [AttendeeWithRelations] | false | none | (tsType: AttendeeWithRelations, schemaOptions: { includeRelations: true }) |
»»» AttendeeWithRelations | AttendeeWithRelations | false | none | (tsType: AttendeeWithRelations, schemaOptions: { includeRelations: true }) |
»»»» deleted | boolean | false | none | none |
»»»» deletedOn | string(date-time)¦null | false | none | none |
»»»» deletedBy | string¦null | false | none | none |
»»»» createdOn | string(date-time) | false | none | none |
»»»» modifiedOn | string(date-time) | false | none | none |
»»»» createdBy | string | false | none | none |
»»»» modifiedBy | string | false | none | none |
»»»» id | string | false | none | none |
»»»» identifier | string | true | none | none |
»»»» isOptional | boolean | false | none | none |
»»»» isOrganizer | boolean | false | none | none |
»»»» messages | string | false | none | none |
»»»» responseStatus | string | false | none | none |
»»»» eventId | string | true | none | none |
»»»» extId | string | false | none | none |
»»»» extMetadata | object | false | none | none |
»»»» event | EventWithRelations | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»»»» foreignKey | any | false | none | none |
»» attachments | [AttachmentWithRelations] | false | none | (tsType: AttachmentWithRelations, schemaOptions: { includeRelations: true }) |
»»» AttachmentWithRelations | AttachmentWithRelations | false | none | (tsType: AttachmentWithRelations, schemaOptions: { includeRelations: true }) |
»»»» deleted | boolean | false | none | none |
»»»» deletedOn | string(date-time)¦null | false | none | none |
»»»» deletedBy | string¦null | false | none | none |
»»»» createdOn | string(date-time) | false | none | none |
»»»» modifiedOn | string(date-time) | false | none | none |
»»»» createdBy | string | false | none | none |
»»»» modifiedBy | string | false | none | none |
»»»» id | string | false | none | none |
»»»» fileUrl | string | true | none | none |
»»»» iconLink | string | false | none | none |
»»»» mimeType | string | false | none | none |
»»»» title | string | false | none | none |
»»»» eventId | string | true | none | none |
»»»» extId | string | false | none | none |
»»»» extMetadata | object | false | none | none |
»»»» event | EventWithRelations | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»»»» foreignKey | any | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
status | confirmed |
status | tentative |
status | cancelled |
status | completed |
dayOfWeek | 0 |
dayOfWeek | 1 |
dayOfWeek | 2 |
dayOfWeek | 3 |
dayOfWeek | 4 |
dayOfWeek | 5 |
dayOfWeek | 6 |
accessRole | freeBusyReader |
accessRole | reader |
accessRole | writer |
accessRole | owner |
responseStatus | needsAction |
responseStatus | tentative |
responseStatus | accepted |
responseStatus | declined |
EventAttachmentController
EventAttachmentController.create¶
Code samples
POST /events/{id}/attachments
Organizer can add attachments to the event (if it was missed while creating event).
Permissions |
---|
CreateAttachment |
16 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
body | body | NewAttachmentInEvent | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Event model instance | Attachment |
EventAttachmentController.patch¶
Code samples
PATCH /events/{id}/attachments
Organizer can update details of the attachment.
Permissions |
---|
UpdateAttachment |
17 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
where | query | object | false | none |
body | body | AttachmentPartial | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Event.Attachment PATCH success count | loopback.Count |
EventAttachmentController.find¶
Code samples
GET /events/{id}/attachments
These requests will be available to everyone in the event to look at.
Permissions |
---|
ViewAttachment |
15 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
filter | query | object | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Array of Event has many Attachment | Inline |
Response Schema
Status Code 200
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
anonymous | [Attachment] | false | none | none |
» Attachment | Attachment | false | none | none |
»» deleted | boolean | false | none | none |
»» deletedOn | string(date-time)¦null | false | none | none |
»» deletedBy | string¦null | false | none | none |
»» createdOn | string(date-time) | false | none | none |
»» modifiedOn | string(date-time) | false | none | none |
»» createdBy | string | false | none | none |
»» modifiedBy | string | false | none | none |
»» id | string | false | none | none |
»» fileUrl | string | true | none | none |
»» iconLink | string | false | none | none |
»» mimeType | string | false | none | none |
»» title | string | false | none | none |
»» eventId | string | true | none | none |
»» extId | string | false | none | none |
»» extMetadata | object | false | none | none |
EventAttachmentController.delete¶
Code samples
DELETE /events/{id}/attachments
Organizer can delete the attachment.
Permissions |
---|
DeleteAttachment |
18 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
where | query | object | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Event.Attachment DELETE success count | loopback.Count |
EventAttendeeController
EventAttendeeController.create¶
Code samples
POST /events/{id}/attendees
Attendees could be added to the event. This action could only be performed by the organizer
Permissions |
---|
CreateAttendee |
20 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
body | body | NewAttendeeInEvent | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Event model instance | Attendee |
EventAttendeeController.patch¶
Code samples
PATCH /events/{id}/attendees
Attendees can update details here. (Mainly accept or reject the invitation)
Permissions |
---|
UpdateAttendee |
21 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
where | query | object | false | none |
body | body | AttendeePartial | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Event.Attendee PATCH success count | loopback.Count |
EventAttendeeController.find¶
Code samples
GET /events/{id}/attendees
Attendees are visible to everyone according to the access permissions provided to them.
Permissions |
---|
ViewAttendee |
19 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
filter | query | object | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Array of Event has many Attendee | Inline |
Response Schema
Status Code 200
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
anonymous | [Attendee] | false | none | none |
» Attendee | Attendee | false | none | none |
»» deleted | boolean | false | none | none |
»» deletedOn | string(date-time)¦null | false | none | none |
»» deletedBy | string¦null | false | none | none |
»» createdOn | string(date-time) | false | none | none |
»» modifiedOn | string(date-time) | false | none | none |
»» createdBy | string | false | none | none |
»» modifiedBy | string | false | none | none |
»» id | string | false | none | none |
»» identifier | string | true | none | none |
»» isOptional | boolean | false | none | none |
»» isOrganizer | boolean | false | none | none |
»» messages | string | false | none | none |
»» responseStatus | string | false | none | none |
»» eventId | string | true | none | none |
»» extId | string | false | none | none |
»» extMetadata | object | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
responseStatus | needsAction |
responseStatus | tentative |
responseStatus | accepted |
responseStatus | declined |
EventAttendeeController.delete¶
Code samples
DELETE /events/{id}/attendees
Organiser is allowed to delete an attendee of an event. Event participants details from the past could not be created or updated.
Permissions |
---|
DeleteAttendee |
22 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
where | query | object | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Event.Attendee DELETE success count | loopback.Count |
SettingsController
SettingsController.count¶
Code samples
GET /settings/count
Permissions |
---|
ViewSettings |
23 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
where | query | object | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Settings model count | loopback.Count |
SettingsController.replaceById¶
Code samples
PUT /settings/{id}
Update setting.
Permissions |
---|
UpdateSettings |
25 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
body | body | Settings | false | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | Settings PUT success | None |
SettingsController.updateById¶
Code samples
PATCH /settings/{id}
Permissions |
---|
UpdateSettings |
25 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
body | body | SettingsPartial | false | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | Settings PATCH success | None |
SettingsController.findById¶
Code samples
GET /settings/{id}
These requests will be available to everyone in the setting to look at.
Permissions |
---|
ViewSettings |
23 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
filter | query | settings.Filter | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Settings model instance | SettingsWithRelations |
SettingsController.deleteById¶
Code samples
DELETE /settings/{id}
Delete setting.
Permissions |
---|
DeleteSettings |
26 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | Settings DELETE success | None |
SettingsController.create¶
Code samples
POST /settings
Create any new settings
Permissions |
---|
CreateSettings |
24 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
body | body | NewSettings | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Settings model instance | Settings |
SettingsController.updateAll¶
Code samples
PATCH /settings
Permissions |
---|
UpdateSettings |
25 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
where | query | object | false | none |
body | body | SettingsPartial | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Settings PATCH success count | loopback.Count |
SettingsController.find¶
Code samples
GET /settings
Permissions |
---|
ViewSettings |
23 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
filter | query | settings.Filter1 | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Array of Settings model instances | Inline |
Response Schema
Status Code 200
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
anonymous | [SettingsWithRelations] | false | none | [(tsType: SettingsWithRelations, schemaOptions: { includeRelations: true })] |
» SettingsWithRelations | SettingsWithRelations | false | none | (tsType: SettingsWithRelations, schemaOptions: { includeRelations: true }) |
»» deleted | boolean | false | none | none |
»» deletedOn | string(date-time)¦null | false | none | none |
»» deletedBy | string¦null | false | none | none |
»» createdOn | string(date-time) | false | none | none |
»» modifiedOn | string(date-time) | false | none | none |
»» createdBy | string | false | none | none |
»» modifiedBy | string | false | none | none |
»» id | string | false | none | none |
»» ownerId | string | true | none | none |
»» ownerType | string | false | none | none |
»» settingName | string | false | none | none |
»» settingValue | string | false | none | none |
»» extId | string | false | none | none |
»» extMetadata | object | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
ownerType | global |
ownerType | user |
ownerType | calendar |
ownerType | event |
ThemeController
ThemeController.count¶
Code samples
GET /themes/count
Permissions |
---|
ViewTheme |
27 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
where | query | object | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Theme model count | loopback.Count |
ThemeController.replaceById¶
Code samples
PUT /themes/{id}
Permissions |
---|
UpdateTheme |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
body | body | Theme | false | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | Theme PUT success | None |
ThemeController.updateById¶
Code samples
PATCH /themes/{id}
Permissions |
---|
UpdateTheme |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
body | body | ThemePartial | false | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | Theme PATCH success | None |
ThemeController.findById¶
Code samples
GET /themes/{id}
Permissions |
---|
ViewTheme |
27 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
filter | query | themes.Filter | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Theme model instance | ThemeWithRelations |
ThemeController.deleteById¶
Code samples
DELETE /themes/{id}
Permissions |
---|
DeleteTheme |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | Theme DELETE success | None |
ThemeController.create¶
Code samples
POST /themes
Permissions |
---|
CreateTheme |
28 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
body | body | NewTheme | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Theme model instance | Theme |
ThemeController.updateAll¶
Code samples
PATCH /themes
Permissions |
---|
UpdateTheme |
29 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
where | query | object | false | none |
body | body | ThemePartial | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Theme PATCH success count | loopback.Count |
ThemeController.find¶
Code samples
GET /themes
Permissions |
---|
ViewTheme |
27 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
filter | query | themes.Filter1 | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Array of Theme model instances | Inline |
Response Schema
Status Code 200
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
anonymous | [ThemeWithRelations] | false | none | [(tsType: ThemeWithRelations, schemaOptions: { includeRelations: true })] |
» ThemeWithRelations | ThemeWithRelations | false | none | (tsType: ThemeWithRelations, schemaOptions: { includeRelations: true }) |
»» deleted | boolean | false | none | none |
»» deletedOn | string(date-time)¦null | false | none | none |
»» deletedBy | string¦null | false | none | none |
»» createdOn | string(date-time) | false | none | none |
»» modifiedOn | string(date-time) | false | none | none |
»» createdBy | string | false | none | none |
»» modifiedBy | string | false | none | none |
»» id | string | false | none | none |
»» calBg | string | false | none | none |
»» calFg | string | false | none | none |
»» eventBg | string | false | none | none |
»» eventFg | string | false | none | none |
»» extId | string | false | none | none |
»» extMetadata | object | false | none | none |
WorkingHourController
WorkingHourController.count¶
Code samples
GET /working-hours/count
Permissions |
---|
ViewWorkingHour |
31 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
where | query | object | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | WorkingHour model count | loopback.Count |
WorkingHourController.replaceById¶
Code samples
PUT /working-hours/{id}
This api is to update the calendar by passing an id
.
This action will be allowed only to the owner of the calendar or the admin.
To identify the owner
we will check for the email passed in the token
and the corresponding access level,whereas to identify the admin
we will check for the permission.
Permissions |
---|
UpdateWorkingHour |
33 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
body | body | WorkingHour | false | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | WorkingHour PUT success | None |
WorkingHourController.updateById¶
Code samples
PATCH /working-hours/{id}
Permissions |
---|
UpdateWorkingHour |
33 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
body | body | WorkingHourPartial | false | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | WorkingHour PATCH success | None |
WorkingHourController.findById¶
Code samples
GET /working-hours/{id}
These requests will be available to everyone to look at. This will be represent the work timings for the owner of the calendar.
Permissions |
---|
ViewWorkingHour |
31 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
filter | query | working_hours.Filter | false | none |
Example responses
200 Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 |
|
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | WorkingHour model instance | WorkingHourWithRelations |
WorkingHourController.deleteById¶
Code samples
DELETE /working-hours/{id}
This api is to update the calendar by passing an id
. This action will
be allowed only to the owner of the calendar or the admin. To identify the ‘owner’
we will check for the email passed in the token and the corresponding access level,
whereas to identify the admin we will check for the permission.
Permissions |
---|
DeleteWorkingHour |
34 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | none |
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | WorkingHour DELETE success | None |
WorkingHourController.create¶
Code samples
POST /working-hours
Permissions |
---|
CreateWorkingHour |
32 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
body | body | NewWorkingHour | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | WorkingHour model instance | WorkingHour |
WorkingHourController.updateAll¶
Code samples
PATCH /working-hours
Permissions |
---|
UpdateWorkingHour |
33 |
Body parameter
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
where | query | object | false | none |
body | body | WorkingHourPartial | false | none |
Example responses
200 Response
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | WorkingHour PATCH success count | loopback.Count |
WorkingHourController.find¶
Code samples
GET /working-hours
Permissions |
---|
ViewWorkingHour |
31 |
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
filter | query | working_hours.Filter1 | false | none |
Example responses
200 Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
|
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Array of WorkingHour model instances | Inline |
Response Schema
Status Code 200
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
anonymous | [WorkingHourWithRelations] | false | none | [(tsType: WorkingHourWithRelations, schemaOptions: { includeRelations: true })] |
» WorkingHourWithRelations | WorkingHourWithRelations | false | none | (tsType: WorkingHourWithRelations, schemaOptions: { includeRelations: true }) |
»» deleted | boolean | false | none | none |
»» deletedOn | string(date-time)¦null | false | none | none |
»» deletedBy | string¦null | false | none | none |
»» createdOn | string(date-time) | false | none | none |
»» modifiedOn | string(date-time) | false | none | none |
»» createdBy | string | false | none | none |
»» modifiedBy | string | false | none | none |
»» id | string | false | none | none |
»» dayOfWeek | number | false | none | none |
»» end | string | false | none | none |
»» start | string | false | none | none |
»» calendarId | string | true | none | none |
»» extId | string | false | none | none |
»» extMetadata | object | false | none | none |
»» calendar | CalendarWithRelations | false | none | (tsType: CalendarWithRelations, schemaOptions: { includeRelations: true }) |
»»» deleted | boolean | false | none | none |
»»» deletedOn | string(date-time)¦null | false | none | none |
»»» deletedBy | string¦null | false | none | none |
»»» createdOn | string(date-time) | false | none | none |
»»» modifiedOn | string(date-time) | false | none | none |
»»» createdBy | string | false | none | none |
»»» modifiedBy | string | false | none | none |
»»» id | string | false | none | none |
»»» source | string | false | none | none |
»»» enableWorkingHours | boolean | false | none | none |
»»» location | string | false | none | none |
»»» identifier | string | true | none | none |
»»» summary | string | false | none | none |
»»» timezone | string | false | none | none |
»»» extId | string | false | none | none |
»»» extMetadata | object | false | none | none |
»»» events | [EventWithRelations] | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»»»» EventWithRelations | EventWithRelations | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»»»»» deleted | boolean | false | none | none |
»»»»» deletedOn | string(date-time)¦null | false | none | none |
»»»»» deletedBy | string¦null | false | none | none |
»»»»» createdOn | string(date-time) | false | none | none |
»»»»» modifiedOn | string(date-time) | false | none | none |
»»»»» createdBy | string | false | none | none |
»»»»» modifiedBy | string | false | none | none |
»»»»» id | string | false | none | none |
»»»»» bgColor | string | false | none | none |
»»»»» description | string | false | none | none |
»»»»» endDateTime | string(date-time) | false | none | none |
»»»»» fgColor | string | false | none | none |
»»»»» iCalUid | string | false | none | none |
»»»»» isFullDayEvent | boolean | false | none | none |
»»»»» isLocked | boolean | false | none | none |
»»»»» link | string | false | none | none |
»»»»» location | string | false | none | none |
»»»»» meetingLink | string | false | none | none |
»»»»» identifier | string | false | none | none |
»»»»» startDateTime | string(date-time) | false | none | none |
»»»»» status | string | false | none | none |
»»»»» summary | string | false | none | none |
»»»»» timezone | string | false | none | none |
»»»»» calendarId | string | true | none | none |
»»»»» parentEventId | string | false | none | none |
»»»»» extId | string | false | none | none |
»»»»» extMetadata | object | false | none | none |
»»»»» calendar | CalendarWithRelations | false | none | (tsType: CalendarWithRelations, schemaOptions: { includeRelations: true }) |
»»»»» foreignKey | any | false | none | none |
»»»»» parentEvent | EventWithRelations | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»»»»» attendees | [AttendeeWithRelations] | false | none | (tsType: AttendeeWithRelations, schemaOptions: { includeRelations: true }) |
»»»»»» AttendeeWithRelations | AttendeeWithRelations | false | none | (tsType: AttendeeWithRelations, schemaOptions: { includeRelations: true }) |
»»»»»»» deleted | boolean | false | none | none |
»»»»»»» deletedOn | string(date-time)¦null | false | none | none |
»»»»»»» deletedBy | string¦null | false | none | none |
»»»»»»» createdOn | string(date-time) | false | none | none |
»»»»»»» modifiedOn | string(date-time) | false | none | none |
»»»»»»» createdBy | string | false | none | none |
»»»»»»» modifiedBy | string | false | none | none |
»»»»»»» id | string | false | none | none |
»»»»»»» identifier | string | true | none | none |
»»»»»»» isOptional | boolean | false | none | none |
»»»»»»» isOrganizer | boolean | false | none | none |
»»»»»»» messages | string | false | none | none |
»»»»»»» responseStatus | string | false | none | none |
»»»»»»» eventId | string | true | none | none |
»»»»»»» extId | string | false | none | none |
»»»»»»» extMetadata | object | false | none | none |
»»»»»»» event | EventWithRelations | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»»»»»»» foreignKey | any | false | none | none |
»»»»» attachments | [AttachmentWithRelations] | false | none | (tsType: AttachmentWithRelations, schemaOptions: { includeRelations: true }) |
»»»»»» AttachmentWithRelations | AttachmentWithRelations | false | none | (tsType: AttachmentWithRelations, schemaOptions: { includeRelations: true }) |
»»»»»»» deleted | boolean | false | none | none |
»»»»»»» deletedOn | string(date-time)¦null | false | none | none |
»»»»»»» deletedBy | string¦null | false | none | none |
»»»»»»» createdOn | string(date-time) | false | none | none |
»»»»»»» modifiedOn | string(date-time) | false | none | none |
»»»»»»» createdBy | string | false | none | none |
»»»»»»» modifiedBy | string | false | none | none |
»»»»»»» id | string | false | none | none |
»»»»»»» fileUrl | string | true | none | none |
»»»»»»» iconLink | string | false | none | none |
»»»»»»» mimeType | string | false | none | none |
»»»»»»» title | string | false | none | none |
»»»»»»» eventId | string | true | none | none |
»»»»»»» extId | string | false | none | none |
»»»»»»» extMetadata | object | false | none | none |
»»»»»»» event | EventWithRelations | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
»»»»»»» foreignKey | any | false | none | none |
»»» workingHours | [WorkingHourWithRelations] | false | none | (tsType: WorkingHourWithRelations, schemaOptions: { includeRelations: true }) |
»»»» WorkingHourWithRelations | WorkingHourWithRelations | false | none | (tsType: WorkingHourWithRelations, schemaOptions: { includeRelations: true }) |
»»» subscriptions | [SubscriptionWithRelations] | false | none | (tsType: SubscriptionWithRelations, schemaOptions: { includeRelations: true }) |
»»»» SubscriptionWithRelations | SubscriptionWithRelations | false | none | (tsType: SubscriptionWithRelations, schemaOptions: { includeRelations: true }) |
»»»»» deleted | boolean | false | none | none |
»»»»» deletedOn | string(date-time)¦null | false | none | none |
»»»»» deletedBy | string¦null | false | none | none |
»»»»» createdOn | string(date-time) | false | none | none |
»»»»» modifiedOn | string(date-time) | false | none | none |
»»»»» createdBy | string | false | none | none |
»»»»» modifiedBy | string | false | none | none |
»»»»» id | string | false | none | none |
»»»»» accessRole | string | false | none | none |
»»»»» bgColor | string | false | none | none |
»»»»» fgColor | string | false | none | none |
»»»»» isHidden | boolean | false | none | none |
»»»»» isPrimary | boolean | false | none | none |
»»»»» identifier | string | true | none | none |
»»»»» defaultReminders | object | false | none | none |
»»»»» notificationSettings | object | false | none | none |
»»»»» calendarId | string | true | none | none |
»»»»» extId | string | false | none | none |
»»»»» extMetadata | object | false | none | none |
»»»»» calendar | CalendarWithRelations | false | none | (tsType: CalendarWithRelations, schemaOptions: { includeRelations: true }) |
»»»»» foreignKey | any | false | none | none |
»» foreignKey | any | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
dayOfWeek | 0 |
dayOfWeek | 1 |
dayOfWeek | 2 |
dayOfWeek | 3 |
dayOfWeek | 4 |
dayOfWeek | 5 |
dayOfWeek | 6 |
status | confirmed |
status | tentative |
status | cancelled |
status | completed |
responseStatus | needsAction |
responseStatus | tentative |
responseStatus | accepted |
responseStatus | declined |
accessRole | freeBusyReader |
accessRole | reader |
accessRole | writer |
accessRole | owner |
Schemas¶
Attachment
Attachment
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
id | string | false | none | none |
fileUrl | string | true | none | none |
iconLink | string | false | none | none |
mimeType | string | false | none | none |
title | string | false | none | none |
eventId | string | true | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
NewAttachment
NewAttachment
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
fileUrl | string | true | none | none |
iconLink | string | false | none | none |
mimeType | string | false | none | none |
title | string | false | none | none |
eventId | string | true | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
AttendeeWithRelations
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 |
|
AttendeeWithRelations
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
id | string | false | none | none |
identifier | string | true | none | none |
isOptional | boolean | false | none | none |
isOrganizer | boolean | false | none | none |
messages | string | false | none | none |
responseStatus | string | false | none | none |
eventId | string | true | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
event | EventWithRelations | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
foreignKey | any | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
responseStatus | needsAction |
responseStatus | tentative |
responseStatus | accepted |
responseStatus | declined |
EventWithRelations
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 |
|
EventWithRelations
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
id | string | false | none | none |
bgColor | string | false | none | none |
description | string | false | none | none |
endDateTime | string(date-time) | false | none | none |
fgColor | string | false | none | none |
iCalUid | string | false | none | none |
isFullDayEvent | boolean | false | none | none |
isLocked | boolean | false | none | none |
link | string | false | none | none |
location | string | false | none | none |
meetingLink | string | false | none | none |
identifier | string | false | none | none |
startDateTime | string(date-time) | false | none | none |
status | string | false | none | none |
summary | string | false | none | none |
timezone | string | false | none | none |
calendarId | string | true | none | none |
parentEventId | string | false | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
calendar | CalendarWithRelations | false | none | (tsType: CalendarWithRelations, schemaOptions: { includeRelations: true }) |
foreignKey | any | false | none | none |
parentEvent | EventWithRelations | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
attendees | [AttendeeWithRelations] | false | none | [(tsType: AttendeeWithRelations, schemaOptions: { includeRelations: true })] |
attachments | [AttachmentWithRelations] | false | none | [(tsType: AttachmentWithRelations, schemaOptions: { includeRelations: true })] |
Enumerated Values¶
Property | Value |
---|---|
status | confirmed |
status | tentative |
status | cancelled |
status | completed |
AttachmentWithRelations
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 |
|
AttachmentWithRelations
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
id | string | false | none | none |
fileUrl | string | true | none | none |
iconLink | string | false | none | none |
mimeType | string | false | none | none |
title | string | false | none | none |
eventId | string | true | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
event | EventWithRelations | false | none | (tsType: EventWithRelations, schemaOptions: { includeRelations: true }) |
foreignKey | any | false | none | none |
AttachmentPartial
AttachmentPartial
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
id | string | false | none | none |
fileUrl | string | false | none | none |
iconLink | string | false | none | none |
mimeType | string | false | none | none |
title | string | false | none | none |
eventId | string | false | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
Attendee
Attendee
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
id | string | false | none | none |
identifier | string | true | none | none |
isOptional | boolean | false | none | none |
isOrganizer | boolean | false | none | none |
messages | string | false | none | none |
responseStatus | string | false | none | none |
eventId | string | true | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
responseStatus | needsAction |
responseStatus | tentative |
responseStatus | accepted |
responseStatus | declined |
NewAttendee
NewAttendee
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
identifier | string | true | none | none |
isOptional | boolean | false | none | none |
isOrganizer | boolean | false | none | none |
messages | string | false | none | none |
responseStatus | string | false | none | none |
eventId | string | true | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
responseStatus | needsAction |
responseStatus | tentative |
responseStatus | accepted |
responseStatus | declined |
AttendeePartial
AttendeePartial
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
id | string | false | none | none |
identifier | string | false | none | none |
isOptional | boolean | false | none | none |
isOrganizer | boolean | false | none | none |
messages | string | false | none | none |
responseStatus | string | false | none | none |
eventId | string | false | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
responseStatus | needsAction |
responseStatus | tentative |
responseStatus | accepted |
responseStatus | declined |
Calendar
Calendar
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
id | string | false | none | none |
source | string | false | none | none |
enableWorkingHours | boolean | false | none | none |
location | string | false | none | none |
identifier | string | true | none | none |
summary | string | false | none | none |
timezone | string | false | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
WorkingHour
WorkingHour
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
id | string | false | none | none |
dayOfWeek | number | false | none | none |
end | string | false | none | none |
start | string | false | none | none |
calendarId | string | true | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
dayOfWeek | 0 |
dayOfWeek | 1 |
dayOfWeek | 2 |
dayOfWeek | 3 |
dayOfWeek | 4 |
dayOfWeek | 5 |
dayOfWeek | 6 |
NewCalendar
NewCalendar
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
source | string | false | none | none |
enableWorkingHours | boolean | false | none | none |
location | string | false | none | none |
identifier | string | true | none | none |
summary | string | false | none | none |
timezone | string | false | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
workingHours | [WorkingHour] | false | none | none |
subscription | object | false | none | none |
CalendarDTO
CalendarDTO
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
id | string | false | none | none |
source | string | false | none | none |
enableWorkingHours | boolean | false | none | none |
location | string | false | none | none |
identifier | string | true | none | none |
summary | string | false | none | none |
timezone | string | false | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
workingHours | [WorkingHour] | false | none | none |
subscription | object | false | none | none |
CalendarWithRelations
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 |
|
CalendarWithRelations
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
id | string | false | none | none |
source | string | false | none | none |
enableWorkingHours | boolean | false | none | none |
location | string | false | none | none |
identifier | string | true | none | none |
summary | string | false | none | none |
timezone | string | false | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
events | [EventWithRelations] | false | none | [(tsType: EventWithRelations, schemaOptions: { includeRelations: true })] |
workingHours | [WorkingHourWithRelations] | false | none | [(tsType: WorkingHourWithRelations, schemaOptions: { includeRelations: true })] |
subscriptions | [SubscriptionWithRelations] | false | none | [(tsType: SubscriptionWithRelations, schemaOptions: { includeRelations: true })] |
CalendarPartial
CalendarPartial
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
id | string | false | none | none |
source | string | false | none | none |
enableWorkingHours | boolean | false | none | none |
location | string | false | none | none |
identifier | string | false | none | none |
summary | string | false | none | none |
timezone | string | false | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
Event
Event
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
id | string | false | none | none |
bgColor | string | false | none | none |
description | string | false | none | none |
endDateTime | string(date-time) | false | none | none |
fgColor | string | false | none | none |
iCalUid | string | false | none | none |
isFullDayEvent | boolean | false | none | none |
isLocked | boolean | false | none | none |
link | string | false | none | none |
location | string | false | none | none |
meetingLink | string | false | none | none |
identifier | string | false | none | none |
startDateTime | string(date-time) | false | none | none |
status | string | false | none | none |
summary | string | false | none | none |
timezone | string | false | none | none |
calendarId | string | true | none | none |
parentEventId | string | false | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
status | confirmed |
status | tentative |
status | cancelled |
status | completed |
NewEvent
NewEvent
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
bgColor | string | false | none | none |
description | string | false | none | none |
endDateTime | string(date-time) | false | none | none |
fgColor | string | false | none | none |
iCalUid | string | false | none | none |
isFullDayEvent | boolean | false | none | none |
isLocked | boolean | false | none | none |
link | string | false | none | none |
location | string | false | none | none |
meetingLink | string | false | none | none |
identifier | string | false | none | none |
startDateTime | string(date-time) | false | none | none |
status | string | false | none | none |
summary | string | false | none | none |
timezone | string | false | none | none |
calendarId | string | true | none | none |
parentEventId | string | false | none | none |
attachments | [Attachment] | false | none | none |
attendees | [Attendee] | false | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
status | confirmed |
status | tentative |
status | cancelled |
status | completed |
EventAttendeeViewItemDTO
EventAttendeeViewItemDTO
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
id | string | false | none | none |
bgColor | string | false | none | none |
description | string | false | none | none |
endDateTime | string(date-time) | false | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
fgColor | string | false | none | none |
iCalUid | string | false | none | none |
isFullDayEvent | boolean | false | none | none |
isLocked | boolean | false | none | none |
link | string | false | none | none |
location | string | false | none | none |
meetingLink | string | false | none | none |
identifier | string | false | none | none |
startDateTime | string(date-time) | false | none | none |
status | string | false | none | none |
summary | string | false | none | none |
timezone | string | false | none | none |
attendeeId | string | false | none | none |
isOptional | boolean | false | none | none |
attendeeIdentifier | string | false | none | none |
isOrganizer | boolean | false | none | none |
messages | string | false | none | none |
eventId | string | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
status | confirmed |
status | tentative |
status | cancelled |
status | completed |
FreeBusyRequest
FreeBusyRequest
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
timeMax | string(date-time) | true | none | none |
timeMin | string(date-time) | true | none | none |
items | [EventAttendeeViewItemDTO] | false | none | none |
FreeBusyDTO
FreeBusyDTO
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
timeMax | string(date-time) | true | none | none |
timeMin | string(date-time) | true | none | none |
items | [EventAttendeeViewItemDTO] | false | none | none |
EventPartial
EventPartial
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
id | string | false | none | none |
bgColor | string | false | none | none |
description | string | false | none | none |
endDateTime | string(date-time) | false | none | none |
fgColor | string | false | none | none |
iCalUid | string | false | none | none |
isFullDayEvent | boolean | false | none | none |
isLocked | boolean | false | none | none |
link | string | false | none | none |
location | string | false | none | none |
meetingLink | string | false | none | none |
identifier | string | false | none | none |
startDateTime | string(date-time) | false | none | none |
status | string | false | none | none |
summary | string | false | none | none |
timezone | string | false | none | none |
calendarId | string | false | none | none |
parentEventId | string | false | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
status | confirmed |
status | tentative |
status | cancelled |
status | completed |
Settings
Settings
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
id | string | false | none | none |
ownerId | string | true | none | none |
ownerType | string | false | none | none |
settingName | string | false | none | none |
settingValue | string | false | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
ownerType | global |
ownerType | user |
ownerType | calendar |
ownerType | event |
NewSettings
NewSettings
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
ownerId | string | true | none | none |
ownerType | string | false | none | none |
settingName | string | false | none | none |
settingValue | string | false | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
ownerType | global |
ownerType | user |
ownerType | calendar |
ownerType | event |
SettingsWithRelations
SettingsWithRelations
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
id | string | false | none | none |
ownerId | string | true | none | none |
ownerType | string | false | none | none |
settingName | string | false | none | none |
settingValue | string | false | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
ownerType | global |
ownerType | user |
ownerType | calendar |
ownerType | event |
SettingsPartial
SettingsPartial
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
id | string | false | none | none |
ownerId | string | false | none | none |
ownerType | string | false | none | none |
settingName | string | false | none | none |
settingValue | string | false | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
ownerType | global |
ownerType | user |
ownerType | calendar |
ownerType | event |
Subscription
Subscription
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
id | string | false | none | none |
accessRole | string | false | none | none |
bgColor | string | false | none | none |
fgColor | string | false | none | none |
isHidden | boolean | false | none | none |
isPrimary | boolean | false | none | none |
identifier | string | true | none | none |
defaultReminders | object | false | none | none |
notificationSettings | object | false | none | none |
calendarId | string | true | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
accessRole | freeBusyReader |
accessRole | reader |
accessRole | writer |
accessRole | owner |
NewSubscription
NewSubscription
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
accessRole | string | false | none | none |
bgColor | string | false | none | none |
fgColor | string | false | none | none |
isHidden | boolean | false | none | none |
isPrimary | boolean | false | none | none |
identifier | string | true | none | none |
defaultReminders | object | false | none | none |
notificationSettings | object | false | none | none |
calendarId | string | true | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
accessRole | freeBusyReader |
accessRole | reader |
accessRole | writer |
accessRole | owner |
SubscriptionWithRelations
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 |
|
SubscriptionWithRelations
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
id | string | false | none | none |
accessRole | string | false | none | none |
bgColor | string | false | none | none |
fgColor | string | false | none | none |
isHidden | boolean | false | none | none |
isPrimary | boolean | false | none | none |
identifier | string | true | none | none |
defaultReminders | object | false | none | none |
notificationSettings | object | false | none | none |
calendarId | string | true | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
calendar | CalendarWithRelations | false | none | (tsType: CalendarWithRelations, schemaOptions: { includeRelations: true }) |
foreignKey | any | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
accessRole | freeBusyReader |
accessRole | reader |
accessRole | writer |
accessRole | owner |
SubscriptionPartial
SubscriptionPartial
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
id | string | false | none | none |
accessRole | string | false | none | none |
bgColor | string | false | none | none |
fgColor | string | false | none | none |
isHidden | boolean | false | none | none |
isPrimary | boolean | false | none | none |
identifier | string | false | none | none |
defaultReminders | object | false | none | none |
notificationSettings | object | false | none | none |
calendarId | string | false | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
accessRole | freeBusyReader |
accessRole | reader |
accessRole | writer |
accessRole | owner |
Theme
Theme
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
id | string | false | none | none |
calBg | string | false | none | none |
calFg | string | false | none | none |
eventBg | string | false | none | none |
eventFg | string | false | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
NewTheme
NewTheme
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
calBg | string | false | none | none |
calFg | string | false | none | none |
eventBg | string | false | none | none |
eventFg | string | false | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
ThemeWithRelations
ThemeWithRelations
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
id | string | false | none | none |
calBg | string | false | none | none |
calFg | string | false | none | none |
eventBg | string | false | none | none |
eventFg | string | false | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
ThemePartial
ThemePartial
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
id | string | false | none | none |
calBg | string | false | none | none |
calFg | string | false | none | none |
eventBg | string | false | none | none |
eventFg | string | false | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
NewWorkingHour
NewWorkingHour
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
dayOfWeek | number | false | none | none |
end | string | false | none | none |
start | string | false | none | none |
calendarId | string | true | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
dayOfWeek | 0 |
dayOfWeek | 1 |
dayOfWeek | 2 |
dayOfWeek | 3 |
dayOfWeek | 4 |
dayOfWeek | 5 |
dayOfWeek | 6 |
WorkingHourWithRelations
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 |
|
WorkingHourWithRelations
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
id | string | false | none | none |
dayOfWeek | number | false | none | none |
end | string | false | none | none |
start | string | false | none | none |
calendarId | string | true | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
calendar | CalendarWithRelations | false | none | (tsType: CalendarWithRelations, schemaOptions: { includeRelations: true }) |
foreignKey | any | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
dayOfWeek | 0 |
dayOfWeek | 1 |
dayOfWeek | 2 |
dayOfWeek | 3 |
dayOfWeek | 4 |
dayOfWeek | 5 |
dayOfWeek | 6 |
WorkingHourPartial
WorkingHourPartial
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
id | string | false | none | none |
dayOfWeek | number | false | none | none |
end | string | false | none | none |
start | string | false | none | none |
calendarId | string | false | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
dayOfWeek | 0 |
dayOfWeek | 1 |
dayOfWeek | 2 |
dayOfWeek | 3 |
dayOfWeek | 4 |
dayOfWeek | 5 |
dayOfWeek | 6 |
Date
Properties¶
None
NewEventInCalendar
NewEventInCalendar
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
bgColor | string | false | none | none |
description | string | false | none | none |
endDateTime | string(date-time) | false | none | none |
fgColor | string | false | none | none |
iCalUid | string | false | none | none |
isFullDayEvent | boolean | false | none | none |
isLocked | boolean | false | none | none |
link | string | false | none | none |
location | string | false | none | none |
meetingLink | string | false | none | none |
identifier | string | false | none | none |
startDateTime | string(date-time) | false | none | none |
status | string | false | none | none |
summary | string | false | none | none |
timezone | string | false | none | none |
calendarId | string | false | none | none |
parentEventId | string | false | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
status | confirmed |
status | tentative |
status | cancelled |
status | completed |
NewSubscriptionInCalendar
NewSubscriptionInCalendar
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
accessRole | string | false | none | none |
bgColor | string | false | none | none |
fgColor | string | false | none | none |
isHidden | boolean | false | none | none |
isPrimary | boolean | false | none | none |
identifier | string | true | none | none |
defaultReminders | object | false | none | none |
notificationSettings | object | false | none | none |
calendarId | string | false | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
accessRole | freeBusyReader |
accessRole | reader |
accessRole | writer |
accessRole | owner |
NewWorkingHourInCalendar
NewWorkingHourInCalendar
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
dayOfWeek | number | false | none | none |
end | string | false | none | none |
start | string | false | none | none |
calendarId | string | false | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
dayOfWeek | 0 |
dayOfWeek | 1 |
dayOfWeek | 2 |
dayOfWeek | 3 |
dayOfWeek | 4 |
dayOfWeek | 5 |
dayOfWeek | 6 |
NewAttachmentInEvent
NewAttachmentInEvent
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
fileUrl | string | true | none | none |
iconLink | string | false | none | none |
mimeType | string | false | none | none |
title | string | false | none | none |
eventId | string | false | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
NewAttendeeInEvent
NewAttendeeInEvent
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
deleted | boolean | false | none | none |
deletedOn | string(date-time)¦null | false | none | none |
deletedBy | string¦null | false | none | none |
createdOn | string(date-time) | false | none | none |
modifiedOn | string(date-time) | false | none | none |
createdBy | string | false | none | none |
modifiedBy | string | false | none | none |
identifier | string | true | none | none |
isOptional | boolean | false | none | none |
isOrganizer | boolean | false | none | none |
messages | string | false | none | none |
responseStatus | string | false | none | none |
eventId | string | false | none | none |
extId | string | false | none | none |
extMetadata | object | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
responseStatus | needsAction |
responseStatus | tentative |
responseStatus | accepted |
responseStatus | declined |
loopback.Count
loopback.Count
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
count | number | false | none | none |
attachments.ScopeFilter
attachments.ScopeFilter
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
offset | integer | false | none | none |
limit | integer | false | none | none |
skip | integer | false | none | none |
order | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
where | object | false | none | none |
fields | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | object | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
include | [object] | false | none | none |
attachments.IncludeFilter.Items
attachments.IncludeFilter.Items
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
relation | string | false | none | none |
scope | attachments.ScopeFilter | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
relation | event |
attachments.Filter
attachments.Filter
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
offset | integer | false | none | none |
limit | integer | false | none | none |
skip | integer | false | none | none |
order | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
fields | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | object | false | none | none |
»» deleted | boolean | false | none | none |
»» deletedOn | boolean | false | none | none |
»» deletedBy | boolean | false | none | none |
»» createdOn | boolean | false | none | none |
»» modifiedOn | boolean | false | none | none |
»» createdBy | boolean | false | none | none |
»» modifiedBy | boolean | false | none | none |
»» id | boolean | false | none | none |
»» fileUrl | boolean | false | none | none |
»» iconLink | boolean | false | none | none |
»» mimeType | boolean | false | none | none |
»» title | boolean | false | none | none |
»» eventId | boolean | false | none | none |
»» extId | boolean | false | none | none |
»» extMetadata | boolean | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
include | [anyOf] | false | none | none |
anyOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | attachments.IncludeFilter.Items | false | none | none |
or
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
attachments.Filter1
attachments.Filter
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
offset | integer | false | none | none |
limit | integer | false | none | none |
skip | integer | false | none | none |
order | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
where | object | false | none | none |
fields | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | object | false | none | none |
»» deleted | boolean | false | none | none |
»» deletedOn | boolean | false | none | none |
»» deletedBy | boolean | false | none | none |
»» createdOn | boolean | false | none | none |
»» modifiedOn | boolean | false | none | none |
»» createdBy | boolean | false | none | none |
»» modifiedBy | boolean | false | none | none |
»» id | boolean | false | none | none |
»» fileUrl | boolean | false | none | none |
»» iconLink | boolean | false | none | none |
»» mimeType | boolean | false | none | none |
»» title | boolean | false | none | none |
»» eventId | boolean | false | none | none |
»» extId | boolean | false | none | none |
»» extMetadata | boolean | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
include | [anyOf] | false | none | none |
anyOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | attachments.IncludeFilter.Items | false | none | none |
or
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
attendees.ScopeFilter
attendees.ScopeFilter
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
offset | integer | false | none | none |
limit | integer | false | none | none |
skip | integer | false | none | none |
order | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
where | object | false | none | none |
fields | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | object | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
include | [object] | false | none | none |
attendees.IncludeFilter.Items
attendees.IncludeFilter.Items
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
relation | string | false | none | none |
scope | attendees.ScopeFilter | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
relation | event |
attendees.Filter
attendees.Filter
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
offset | integer | false | none | none |
limit | integer | false | none | none |
skip | integer | false | none | none |
order | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
fields | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | object | false | none | none |
»» deleted | boolean | false | none | none |
»» deletedOn | boolean | false | none | none |
»» deletedBy | boolean | false | none | none |
»» createdOn | boolean | false | none | none |
»» modifiedOn | boolean | false | none | none |
»» createdBy | boolean | false | none | none |
»» modifiedBy | boolean | false | none | none |
»» id | boolean | false | none | none |
»» identifier | boolean | false | none | none |
»» isOptional | boolean | false | none | none |
»» isOrganizer | boolean | false | none | none |
»» messages | boolean | false | none | none |
»» responseStatus | boolean | false | none | none |
»» eventId | boolean | false | none | none |
»» extId | boolean | false | none | none |
»» extMetadata | boolean | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
include | [anyOf] | false | none | none |
anyOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | attendees.IncludeFilter.Items | false | none | none |
or
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
attendees.Filter1
attendees.Filter
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
offset | integer | false | none | none |
limit | integer | false | none | none |
skip | integer | false | none | none |
order | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
where | object | false | none | none |
fields | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | object | false | none | none |
»» deleted | boolean | false | none | none |
»» deletedOn | boolean | false | none | none |
»» deletedBy | boolean | false | none | none |
»» createdOn | boolean | false | none | none |
»» modifiedOn | boolean | false | none | none |
»» createdBy | boolean | false | none | none |
»» modifiedBy | boolean | false | none | none |
»» id | boolean | false | none | none |
»» identifier | boolean | false | none | none |
»» isOptional | boolean | false | none | none |
»» isOrganizer | boolean | false | none | none |
»» messages | boolean | false | none | none |
»» responseStatus | boolean | false | none | none |
»» eventId | boolean | false | none | none |
»» extId | boolean | false | none | none |
»» extMetadata | boolean | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
include | [anyOf] | false | none | none |
anyOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | attendees.IncludeFilter.Items | false | none | none |
or
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
subscriptions.ScopeFilter
subscriptions.ScopeFilter
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
offset | integer | false | none | none |
limit | integer | false | none | none |
skip | integer | false | none | none |
order | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
where | object | false | none | none |
fields | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | object | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
include | [object] | false | none | none |
subscriptions.IncludeFilter.Items
subscriptions.IncludeFilter.Items
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
relation | string | false | none | none |
scope | subscriptions.ScopeFilter | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
relation | calendar |
subscriptions.Filter
subscriptions.Filter
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
offset | integer | false | none | none |
limit | integer | false | none | none |
skip | integer | false | none | none |
order | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
where | object | false | none | none |
fields | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | object | false | none | none |
»» deleted | boolean | false | none | none |
»» deletedOn | boolean | false | none | none |
»» deletedBy | boolean | false | none | none |
»» createdOn | boolean | false | none | none |
»» modifiedOn | boolean | false | none | none |
»» createdBy | boolean | false | none | none |
»» modifiedBy | boolean | false | none | none |
»» id | boolean | false | none | none |
»» accessRole | boolean | false | none | none |
»» bgColor | boolean | false | none | none |
»» fgColor | boolean | false | none | none |
»» isHidden | boolean | false | none | none |
»» isPrimary | boolean | false | none | none |
»» identifier | boolean | false | none | none |
»» defaultReminders | boolean | false | none | none |
»» notificationSettings | boolean | false | none | none |
»» calendarId | boolean | false | none | none |
»» extId | boolean | false | none | none |
»» extMetadata | boolean | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
include | [anyOf] | false | none | none |
anyOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | subscriptions.IncludeFilter.Items | false | none | none |
or
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
calendars.ScopeFilter
calendars.ScopeFilter
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
offset | integer | false | none | none |
limit | integer | false | none | none |
skip | integer | false | none | none |
order | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
where | object | false | none | none |
fields | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | object | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
include | [object] | false | none | none |
calendars.IncludeFilter.Items
calendars.IncludeFilter.Items
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
relation | string | false | none | none |
scope | calendars.ScopeFilter | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
relation | events |
relation | workingHours |
relation | subscriptions |
calendars.Filter
calendars.Filter
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
offset | integer | false | none | none |
limit | integer | false | none | none |
skip | integer | false | none | none |
order | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
fields | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | object | false | none | none |
»» deleted | boolean | false | none | none |
»» deletedOn | boolean | false | none | none |
»» deletedBy | boolean | false | none | none |
»» createdOn | boolean | false | none | none |
»» modifiedOn | boolean | false | none | none |
»» createdBy | boolean | false | none | none |
»» modifiedBy | boolean | false | none | none |
»» id | boolean | false | none | none |
»» source | boolean | false | none | none |
»» enableWorkingHours | boolean | false | none | none |
»» location | boolean | false | none | none |
»» identifier | boolean | false | none | none |
»» summary | boolean | false | none | none |
»» timezone | boolean | false | none | none |
»» extId | boolean | false | none | none |
»» extMetadata | boolean | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
include | [anyOf] | false | none | none |
anyOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | calendars.IncludeFilter.Items | false | none | none |
or
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
calendars.Filter1
calendars.Filter
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
offset | integer | false | none | none |
limit | integer | false | none | none |
skip | integer | false | none | none |
order | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
where | object | false | none | none |
fields | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | object | false | none | none |
»» deleted | boolean | false | none | none |
»» deletedOn | boolean | false | none | none |
»» deletedBy | boolean | false | none | none |
»» createdOn | boolean | false | none | none |
»» modifiedOn | boolean | false | none | none |
»» createdBy | boolean | false | none | none |
»» modifiedBy | boolean | false | none | none |
»» id | boolean | false | none | none |
»» source | boolean | false | none | none |
»» enableWorkingHours | boolean | false | none | none |
»» location | boolean | false | none | none |
»» identifier | boolean | false | none | none |
»» summary | boolean | false | none | none |
»» timezone | boolean | false | none | none |
»» extId | boolean | false | none | none |
»» extMetadata | boolean | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
include | [anyOf] | false | none | none |
anyOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | calendars.IncludeFilter.Items | false | none | none |
or
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
events.ScopeFilter
events.ScopeFilter
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
offset | integer | false | none | none |
limit | integer | false | none | none |
skip | integer | false | none | none |
order | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
where | object | false | none | none |
fields | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | object | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
include | [object] | false | none | none |
events.IncludeFilter.Items
events.IncludeFilter.Items
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
relation | string | false | none | none |
scope | events.ScopeFilter | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
relation | calendar |
relation | parentEvent |
relation | attendees |
relation | attachments |
events.Filter
events.Filter
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
offset | integer | false | none | none |
limit | integer | false | none | none |
skip | integer | false | none | none |
order | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
fields | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | object | false | none | none |
»» deleted | boolean | false | none | none |
»» deletedOn | boolean | false | none | none |
»» deletedBy | boolean | false | none | none |
»» createdOn | boolean | false | none | none |
»» modifiedOn | boolean | false | none | none |
»» createdBy | boolean | false | none | none |
»» modifiedBy | boolean | false | none | none |
»» id | boolean | false | none | none |
»» bgColor | boolean | false | none | none |
»» description | boolean | false | none | none |
»» endDateTime | boolean | false | none | none |
»» fgColor | boolean | false | none | none |
»» iCalUid | boolean | false | none | none |
»» isFullDayEvent | boolean | false | none | none |
»» isLocked | boolean | false | none | none |
»» link | boolean | false | none | none |
»» location | boolean | false | none | none |
»» meetingLink | boolean | false | none | none |
»» identifier | boolean | false | none | none |
»» startDateTime | boolean | false | none | none |
»» status | boolean | false | none | none |
»» summary | boolean | false | none | none |
»» timezone | boolean | false | none | none |
»» calendarId | boolean | false | none | none |
»» parentEventId | boolean | false | none | none |
»» extId | boolean | false | none | none |
»» extMetadata | boolean | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
include | [anyOf] | false | none | none |
anyOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | events.IncludeFilter.Items | false | none | none |
or
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
events_attendees_view.ScopeFilter
events_attendees_view.ScopeFilter
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
offset | integer | false | none | none |
limit | integer | false | none | none |
skip | integer | false | none | none |
order | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
where | object | false | none | none |
fields | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | object | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
include | [object] | false | none | none |
events_attendees_view.IncludeFilter.Items
events_attendees_view.IncludeFilter.Items
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
relation | string | false | none | none |
scope | events_attendees_view.ScopeFilter | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
relation | calendar |
relation | parentEvent |
relation | attendees |
relation | attachments |
events_attendees_view.Filter
events_attendees_view.Filter
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
offset | integer | false | none | none |
limit | integer | false | none | none |
skip | integer | false | none | none |
order | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
where | object | false | none | none |
fields | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | object | false | none | none |
»» deleted | boolean | false | none | none |
»» deletedOn | boolean | false | none | none |
»» deletedBy | boolean | false | none | none |
»» createdOn | boolean | false | none | none |
»» modifiedOn | boolean | false | none | none |
»» createdBy | boolean | false | none | none |
»» modifiedBy | boolean | false | none | none |
»» id | boolean | false | none | none |
»» bgColor | boolean | false | none | none |
»» description | boolean | false | none | none |
»» endDateTime | boolean | false | none | none |
»» fgColor | boolean | false | none | none |
»» iCalUid | boolean | false | none | none |
»» isFullDayEvent | boolean | false | none | none |
»» isLocked | boolean | false | none | none |
»» link | boolean | false | none | none |
»» location | boolean | false | none | none |
»» meetingLink | boolean | false | none | none |
»» identifier | boolean | false | none | none |
»» startDateTime | boolean | false | none | none |
»» status | boolean | false | none | none |
»» summary | boolean | false | none | none |
»» timezone | boolean | false | none | none |
»» calendarId | boolean | false | none | none |
»» parentEventId | boolean | false | none | none |
»» extId | boolean | false | none | none |
»» extMetadata | boolean | false | none | none |
»» attendeeId | boolean | false | none | none |
»» isOptional | boolean | false | none | none |
»» attendeeIdentifier | boolean | false | none | none |
»» isOrganizer | boolean | false | none | none |
»» messages | boolean | false | none | none |
»» responseStatus | boolean | false | none | none |
»» eventId | boolean | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
include | [anyOf] | false | none | none |
anyOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | events_attendees_view.IncludeFilter.Items | false | none | none |
or
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
settings.Filter
settings.Filter
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
offset | integer | false | none | none |
limit | integer | false | none | none |
skip | integer | false | none | none |
order | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
fields | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | object | false | none | none |
»» deleted | boolean | false | none | none |
»» deletedOn | boolean | false | none | none |
»» deletedBy | boolean | false | none | none |
»» createdOn | boolean | false | none | none |
»» modifiedOn | boolean | false | none | none |
»» createdBy | boolean | false | none | none |
»» modifiedBy | boolean | false | none | none |
»» id | boolean | false | none | none |
»» ownerId | boolean | false | none | none |
»» ownerType | boolean | false | none | none |
»» settingName | boolean | false | none | none |
»» settingValue | boolean | false | none | none |
»» extId | boolean | false | none | none |
»» extMetadata | boolean | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
settings.Filter1
settings.Filter
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
offset | integer | false | none | none |
limit | integer | false | none | none |
skip | integer | false | none | none |
order | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
where | object | false | none | none |
fields | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | object | false | none | none |
»» deleted | boolean | false | none | none |
»» deletedOn | boolean | false | none | none |
»» deletedBy | boolean | false | none | none |
»» createdOn | boolean | false | none | none |
»» modifiedOn | boolean | false | none | none |
»» createdBy | boolean | false | none | none |
»» modifiedBy | boolean | false | none | none |
»» id | boolean | false | none | none |
»» ownerId | boolean | false | none | none |
»» ownerType | boolean | false | none | none |
»» settingName | boolean | false | none | none |
»» settingValue | boolean | false | none | none |
»» extId | boolean | false | none | none |
»» extMetadata | boolean | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
subscriptions.Filter1
subscriptions.Filter
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
offset | integer | false | none | none |
limit | integer | false | none | none |
skip | integer | false | none | none |
order | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
fields | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | object | false | none | none |
»» deleted | boolean | false | none | none |
»» deletedOn | boolean | false | none | none |
»» deletedBy | boolean | false | none | none |
»» createdOn | boolean | false | none | none |
»» modifiedOn | boolean | false | none | none |
»» createdBy | boolean | false | none | none |
»» modifiedBy | boolean | false | none | none |
»» id | boolean | false | none | none |
»» accessRole | boolean | false | none | none |
»» bgColor | boolean | false | none | none |
»» fgColor | boolean | false | none | none |
»» isHidden | boolean | false | none | none |
»» isPrimary | boolean | false | none | none |
»» identifier | boolean | false | none | none |
»» defaultReminders | boolean | false | none | none |
»» notificationSettings | boolean | false | none | none |
»» calendarId | boolean | false | none | none |
»» extId | boolean | false | none | none |
»» extMetadata | boolean | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
include | [anyOf] | false | none | none |
anyOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | subscriptions.IncludeFilter.Items | false | none | none |
or
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
themes.Filter
themes.Filter
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
offset | integer | false | none | none |
limit | integer | false | none | none |
skip | integer | false | none | none |
order | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
fields | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | object | false | none | none |
»» deleted | boolean | false | none | none |
»» deletedOn | boolean | false | none | none |
»» deletedBy | boolean | false | none | none |
»» createdOn | boolean | false | none | none |
»» modifiedOn | boolean | false | none | none |
»» createdBy | boolean | false | none | none |
»» modifiedBy | boolean | false | none | none |
»» id | boolean | false | none | none |
»» calBg | boolean | false | none | none |
»» calFg | boolean | false | none | none |
»» eventBg | boolean | false | none | none |
»» eventFg | boolean | false | none | none |
»» extId | boolean | false | none | none |
»» extMetadata | boolean | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
themes.Filter1
themes.Filter
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
offset | integer | false | none | none |
limit | integer | false | none | none |
skip | integer | false | none | none |
order | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
where | object | false | none | none |
fields | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | object | false | none | none |
»» deleted | boolean | false | none | none |
»» deletedOn | boolean | false | none | none |
»» deletedBy | boolean | false | none | none |
»» createdOn | boolean | false | none | none |
»» modifiedOn | boolean | false | none | none |
»» createdBy | boolean | false | none | none |
»» modifiedBy | boolean | false | none | none |
»» id | boolean | false | none | none |
»» calBg | boolean | false | none | none |
»» calFg | boolean | false | none | none |
»» eventBg | boolean | false | none | none |
»» eventFg | boolean | false | none | none |
»» extId | boolean | false | none | none |
»» extMetadata | boolean | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
working_hours.ScopeFilter
working_hours.ScopeFilter
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
offset | integer | false | none | none |
limit | integer | false | none | none |
skip | integer | false | none | none |
order | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
where | object | false | none | none |
fields | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | object | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
include | [object] | false | none | none |
working_hours.IncludeFilter.Items
working_hours.IncludeFilter.Items
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
relation | string | false | none | none |
scope | working_hours.ScopeFilter | false | none | none |
Enumerated Values¶
Property | Value |
---|---|
relation | calendar |
working_hours.Filter
working_hours.Filter
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
offset | integer | false | none | none |
limit | integer | false | none | none |
skip | integer | false | none | none |
order | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
fields | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | object | false | none | none |
»» deleted | boolean | false | none | none |
»» deletedOn | boolean | false | none | none |
»» deletedBy | boolean | false | none | none |
»» createdOn | boolean | false | none | none |
»» modifiedOn | boolean | false | none | none |
»» createdBy | boolean | false | none | none |
»» modifiedBy | boolean | false | none | none |
»» id | boolean | false | none | none |
»» dayOfWeek | boolean | false | none | none |
»» end | boolean | false | none | none |
»» start | boolean | false | none | none |
»» calendarId | boolean | false | none | none |
»» extId | boolean | false | none | none |
»» extMetadata | boolean | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
include | [anyOf] | false | none | none |
anyOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | working_hours.IncludeFilter.Items | false | none | none |
or
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
working_hours.Filter1
working_hours.Filter
Properties¶
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
offset | integer | false | none | none |
limit | integer | false | none | none |
skip | integer | false | none | none |
order | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
where | object | false | none | none |
fields | any | false | none | none |
oneOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | object | false | none | none |
»» deleted | boolean | false | none | none |
»» deletedOn | boolean | false | none | none |
»» deletedBy | boolean | false | none | none |
»» createdOn | boolean | false | none | none |
»» modifiedOn | boolean | false | none | none |
»» createdBy | boolean | false | none | none |
»» modifiedBy | boolean | false | none | none |
»» id | boolean | false | none | none |
»» dayOfWeek | boolean | false | none | none |
»» end | boolean | false | none | none |
»» start | boolean | false | none | none |
»» calendarId | boolean | false | none | none |
»» extId | boolean | false | none | none |
»» extMetadata | boolean | false | none | none |
xor
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | [string] | false | none | none |
continued
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
include | [anyOf] | false | none | none |
anyOf
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | working_hours.IncludeFilter.Items | false | none | none |
or
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» anonymous | string | false | none | none |