@@ -47,6 +47,16 @@ Get information about the currently authenticated Calendly user
4747| Parameter | Type | Description |
4848| --------- | ---- | ----------- |
4949| ` resource ` | object | Current user information |
50+ | ↳ ` uri ` | string | Canonical reference to the user |
51+ | ↳ ` name ` | string | User full name |
52+ | ↳ ` slug ` | string | Unique identifier for the user in URLs |
53+ | ↳ ` email ` | string | User email address |
54+ | ↳ ` scheduling_url ` | string | URL to the user |
55+ | ↳ ` timezone ` | string | User timezone |
56+ | ↳ ` avatar_url ` | string | URL to user avatar image |
57+ | ↳ ` created_at ` | string | ISO timestamp when user was created |
58+ | ↳ ` updated_at ` | string | ISO timestamp when user was last updated |
59+ | ↳ ` current_organization ` | string | URI of current organization |
5060
5161### ` calendly_list_event_types `
5262
@@ -69,6 +79,25 @@ Retrieve a list of all event types for a user or organization
6979| Parameter | Type | Description |
7080| --------- | ---- | ----------- |
7181| ` collection ` | array | Array of event type objects |
82+ | ↳ ` uri ` | string | Canonical reference to the event type |
83+ | ↳ ` name ` | string | Event type name |
84+ | ↳ ` active ` | boolean | Whether the event type is active |
85+ | ↳ ` booking_method ` | string | Booking method \( e.g., |
86+ | ↳ ` color ` | string | Hex color code |
87+ | ↳ ` created_at ` | string | ISO timestamp of creation |
88+ | ↳ ` description_html ` | string | HTML formatted description |
89+ | ↳ ` description_plain ` | string | Plain text description |
90+ | ↳ ` duration ` | number | Duration in minutes |
91+ | ↳ ` scheduling_url ` | string | URL to scheduling page |
92+ | ↳ ` slug ` | string | Unique identifier for URLs |
93+ | ↳ ` type ` | string | Event type classification |
94+ | ↳ ` updated_at ` | string | ISO timestamp of last update |
95+ | ` pagination ` | object | Pagination information |
96+ | ↳ ` count ` | number | Number of results in this page |
97+ | ↳ ` next_page ` | string | URL to next page \( if available\) |
98+ | ↳ ` previous_page ` | string | URL to previous page \( if available\) |
99+ | ↳ ` next_page_token ` | string | Token for next page |
100+ | ↳ ` previous_page_token ` | string | Token for previous page |
72101
73102### ` calendly_get_event_type `
74103
@@ -86,6 +115,30 @@ Get detailed information about a specific event type
86115| Parameter | Type | Description |
87116| --------- | ---- | ----------- |
88117| ` resource ` | object | Event type details |
118+ | ↳ ` uri ` | string | Canonical reference to the event type |
119+ | ↳ ` name ` | string | Question text |
120+ | ↳ ` active ` | boolean | Whether the event type is active |
121+ | ↳ ` booking_method ` | string | Booking method |
122+ | ↳ ` color ` | string | Hex color code |
123+ | ↳ ` created_at ` | string | ISO timestamp of creation |
124+ | ↳ ` custom_questions ` | array | Custom questions for invitees |
125+ | ↳ ` name ` | string | Question text |
126+ | ↳ ` type ` | string | Question type \( text, single_select, multi_select, etc.\) |
127+ | ↳ ` position ` | number | Question order |
128+ | ↳ ` enabled ` | boolean | Whether question is enabled |
129+ | ↳ ` required ` | boolean | Whether question is required |
130+ | ↳ ` answer_choices ` | array | Available answer choices |
131+ | ↳ ` type ` | string | Event type classification |
132+ | ↳ ` position ` | number | Question order |
133+ | ↳ ` enabled ` | boolean | Whether question is enabled |
134+ | ↳ ` required ` | boolean | Whether question is required |
135+ | ↳ ` answer_choices ` | array | Available answer choices |
136+ | ↳ ` description_html ` | string | HTML formatted description |
137+ | ↳ ` description_plain ` | string | Plain text description |
138+ | ↳ ` duration ` | number | Duration in minutes |
139+ | ↳ ` scheduling_url ` | string | URL to scheduling page |
140+ | ↳ ` slug ` | string | Unique identifier for URLs |
141+ | ↳ ` updated_at ` | string | ISO timestamp of last update |
89142
90143### ` calendly_list_scheduled_events `
91144
@@ -111,6 +164,30 @@ Retrieve a list of scheduled events for a user or organization
111164| Parameter | Type | Description |
112165| --------- | ---- | ----------- |
113166| ` collection ` | array | Array of scheduled event objects |
167+ | ↳ ` uri ` | string | Canonical reference to the event |
168+ | ↳ ` name ` | string | Event name |
169+ | ↳ ` status ` | string | Event status \( active or canceled\) |
170+ | ↳ ` start_time ` | string | ISO timestamp of event start |
171+ | ↳ ` end_time ` | string | ISO timestamp of event end |
172+ | ↳ ` event_type ` | string | URI of the event type |
173+ | ↳ ` location ` | string | Location description |
174+ | ↳ ` type ` | string | Location type \( e.g., |
175+ | ↳ ` join_url ` | string | URL to join online meeting \( if applicable\) |
176+ | ↳ ` invitees_counter ` | object | Invitee count information |
177+ | ↳ ` total ` | number | Total number of invitees |
178+ | ↳ ` active ` | number | Number of active invitees |
179+ | ↳ ` limit ` | number | Maximum number of invitees |
180+ | ↳ ` total ` | number | Total number of invitees |
181+ | ↳ ` active ` | number | Number of active invitees |
182+ | ↳ ` limit ` | number | Maximum number of invitees |
183+ | ↳ ` created_at ` | string | ISO timestamp of event creation |
184+ | ↳ ` updated_at ` | string | ISO timestamp of last update |
185+ | ` pagination ` | object | Pagination information |
186+ | ↳ ` count ` | number | Number of results in this page |
187+ | ↳ ` next_page ` | string | URL to next page \( if available\) |
188+ | ↳ ` previous_page ` | string | URL to previous page \( if available\) |
189+ | ↳ ` next_page_token ` | string | Token for next page |
190+ | ↳ ` previous_page_token ` | string | Token for previous page |
114191
115192### ` calendly_get_scheduled_event `
116193
@@ -128,6 +205,36 @@ Get detailed information about a specific scheduled event
128205| Parameter | Type | Description |
129206| --------- | ---- | ----------- |
130207| ` resource ` | object | Scheduled event details |
208+ | ↳ ` uri ` | string | Canonical reference to the event |
209+ | ↳ ` name ` | string | Event name |
210+ | ↳ ` status ` | string | Event status \( active or canceled\) |
211+ | ↳ ` start_time ` | string | ISO timestamp of event start |
212+ | ↳ ` end_time ` | string | ISO timestamp of event end |
213+ | ↳ ` event_type ` | string | URI of the event type |
214+ | ↳ ` location ` | string | Location description |
215+ | ↳ ` type ` | string | Location type |
216+ | ↳ ` join_url ` | string | URL to join online meeting |
217+ | ↳ ` invitees_counter ` | object | Invitee count information |
218+ | ↳ ` total ` | number | Total number of invitees |
219+ | ↳ ` active ` | number | Number of active invitees |
220+ | ↳ ` limit ` | number | Maximum number of invitees |
221+ | ↳ ` total ` | number | Total number of invitees |
222+ | ↳ ` active ` | number | Number of active invitees |
223+ | ↳ ` limit ` | number | Maximum number of invitees |
224+ | ↳ ` event_memberships ` | array | Event hosts/members |
225+ | ↳ ` user ` | string | User URI |
226+ | ↳ ` user_email ` | string | User email |
227+ | ↳ ` user_name ` | string | User name |
228+ | ↳ ` user ` | string | User URI |
229+ | ↳ ` user_email ` | string | User email |
230+ | ↳ ` user_name ` | string | User name |
231+ | ↳ ` event_guests ` | array | Additional guests |
232+ | ↳ ` email ` | string | Guest email |
233+ | ↳ ` created_at ` | string | When guest was added |
234+ | ↳ ` updated_at ` | string | When guest info was updated |
235+ | ↳ ` email ` | string | Guest email |
236+ | ↳ ` created_at ` | string | ISO timestamp of event creation |
237+ | ↳ ` updated_at ` | string | ISO timestamp of last update |
131238
132239### ` calendly_list_event_invitees `
133240
@@ -150,6 +257,32 @@ Retrieve a list of invitees for a scheduled event
150257| Parameter | Type | Description |
151258| --------- | ---- | ----------- |
152259| ` collection ` | array | Array of invitee objects |
260+ | ↳ ` uri ` | string | Canonical reference to the invitee |
261+ | ↳ ` email ` | string | Invitee email address |
262+ | ↳ ` name ` | string | Invitee full name |
263+ | ↳ ` first_name ` | string | Invitee first name |
264+ | ↳ ` last_name ` | string | Invitee last name |
265+ | ↳ ` status ` | string | Invitee status \( active or canceled\) |
266+ | ↳ ` questions_and_answers ` | array | Responses to custom questions |
267+ | ↳ ` question ` | string | Question text |
268+ | ↳ ` answer ` | string | Invitee answer |
269+ | ↳ ` position ` | number | Question order |
270+ | ↳ ` question ` | string | Question text |
271+ | ↳ ` answer ` | string | Invitee answer |
272+ | ↳ ` position ` | number | Question order |
273+ | ↳ ` timezone ` | string | Invitee timezone |
274+ | ↳ ` event ` | string | URI of the scheduled event |
275+ | ↳ ` created_at ` | string | ISO timestamp when invitee was created |
276+ | ↳ ` updated_at ` | string | ISO timestamp when invitee was updated |
277+ | ↳ ` cancel_url ` | string | URL to cancel the booking |
278+ | ↳ ` reschedule_url ` | string | URL to reschedule the booking |
279+ | ↳ ` rescheduled ` | boolean | Whether invitee rescheduled |
280+ | ` pagination ` | object | Pagination information |
281+ | ↳ ` count ` | number | Number of results in this page |
282+ | ↳ ` next_page ` | string | URL to next page \( if available\) |
283+ | ↳ ` previous_page ` | string | URL to previous page \( if available\) |
284+ | ↳ ` next_page_token ` | string | Token for next page |
285+ | ↳ ` previous_page_token ` | string | Token for previous page |
153286
154287### ` calendly_cancel_event `
155288
@@ -168,5 +301,9 @@ Cancel a scheduled event
168301| Parameter | Type | Description |
169302| --------- | ---- | ----------- |
170303| ` resource ` | object | Cancellation details |
304+ | ↳ ` canceler_type ` | string | Type of canceler \( host or invitee\) |
305+ | ↳ ` canceled_by ` | string | Name of person who canceled |
306+ | ↳ ` reason ` | string | Cancellation reason |
307+ | ↳ ` created_at ` | string | ISO timestamp when event was canceled |
171308
172309
0 commit comments