calendars
Calendars
Bases: ListableApiResource
, FindableApiResource
, CreatableApiResource
, UpdatableApiResource
, DestroyableApiResource
Source code in nylas/resources/calendars.py
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 |
|
create(identifier, request_body)
Create a Calendar.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
identifier |
str
|
The identifier of the Grant to act upon. |
required |
request_body |
CreateCalendarRequest
|
The values to create the Calendar with. |
required |
Returns:
Type | Description |
---|---|
Response[Calendar]
|
The created Calendar. |
Source code in nylas/resources/calendars.py
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
|
destroy(identifier, calendar_id)
Delete a Calendar.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
identifier |
str
|
The identifier of the Grant to act upon. |
required |
calendar_id |
str
|
The ID of the Calendar to delete. Use "primary" to refer to the primary Calendar associated with the Grant. |
required |
Returns:
Type | Description |
---|---|
DeleteResponse
|
The deletion response. |
Source code in nylas/resources/calendars.py
101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
|
find(identifier, calendar_id)
Return a Calendar.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
identifier |
str
|
The identifier of the Grant to act upon. |
required |
calendar_id |
str
|
The ID of the Calendar to retrieve. Use "primary" to refer to the primary Calendar associated with the Grant. |
required |
Returns:
Type | Description |
---|---|
Response[Calendar]
|
The Calendar. |
Source code in nylas/resources/calendars.py
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
|
get_availability(identifier, request_body)
Get availability for a Calendar.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
identifier |
str
|
The grant ID or email account to get availability for. |
required |
request_body |
GetAvailabilityRequest
|
The request body to send to the API. |
required |
Returns:
Name | Type | Description |
---|---|---|
Response |
Response[GetAvailabilityResponse]
|
The availability response from the API. |
Source code in nylas/resources/calendars.py
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 |
|
get_free_busy(identifier, request_body)
Get free/busy info for a Calendar.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
identifier |
str
|
The grant ID or email account to get free/busy for. |
required |
request_body |
GetFreeBusyRequest
|
The request body to send to the API. |
required |
Returns:
Name | Type | Description |
---|---|---|
Response |
Response[GetFreeBusyResponse]
|
The free/busy response from the API. |
Source code in nylas/resources/calendars.py
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 |
|
list(identifier, query_params=None)
Return all Calendars.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
identifier |
str
|
The identifier of the Grant to act upon. |
required |
query_params |
ListCalendersQueryParams
|
The query parameters to include in the request. |
None
|
Returns:
Type | Description |
---|---|
ListResponse[Calendar]
|
The list of Calendars. |
Source code in nylas/resources/calendars.py
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
|
update(identifier, calendar_id, request_body)
Update a Calendar.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
identifier |
str
|
The identifier of the Grant to act upon. |
required |
calendar_id |
str
|
The ID of the Calendar to update. Use "primary" to refer to the primary Calendar associated with the Grant. |
required |
request_body |
UpdateCalendarRequest
|
The values to update the Calendar with. |
required |
Returns:
Type | Description |
---|---|
Response[Calendar]
|
The updated Calendar. |
Source code in nylas/resources/calendars.py
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 |
|