universal-mcp-applications 0.1.13__py3-none-any.whl → 0.1.14__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of universal-mcp-applications might be problematic. Click here for more details.
- universal_mcp/applications/aws_s3/app.py +71 -71
- universal_mcp/applications/calendly/app.py +199 -199
- universal_mcp/applications/canva/app.py +189 -189
- universal_mcp/applications/domain_checker/app.py +31 -24
- universal_mcp/applications/e2b/app.py +6 -7
- universal_mcp/applications/elevenlabs/app.py +24 -20
- universal_mcp/applications/exa/app.py +25 -20
- universal_mcp/applications/falai/app.py +44 -41
- universal_mcp/applications/file_system/app.py +20 -12
- universal_mcp/applications/firecrawl/app.py +46 -47
- universal_mcp/applications/fireflies/app.py +79 -79
- universal_mcp/applications/fpl/app.py +83 -74
- universal_mcp/applications/github/README.md +0 -1028
- universal_mcp/applications/github/app.py +55 -50227
- universal_mcp/applications/google_calendar/app.py +63 -65
- universal_mcp/applications/google_docs/app.py +78 -78
- universal_mcp/applications/google_drive/app.py +361 -440
- universal_mcp/applications/google_gemini/app.py +34 -17
- universal_mcp/applications/google_mail/app.py +117 -117
- universal_mcp/applications/google_searchconsole/app.py +41 -47
- universal_mcp/applications/google_sheet/app.py +157 -164
- universal_mcp/applications/http_tools/app.py +16 -16
- universal_mcp/applications/linkedin/app.py +26 -31
- universal_mcp/applications/ms_teams/app.py +190 -190
- universal_mcp/applications/openai/app.py +55 -56
- universal_mcp/applications/outlook/app.py +57 -57
- universal_mcp/applications/perplexity/app.py +17 -17
- universal_mcp/applications/reddit/app.py +225 -4053
- universal_mcp/applications/replicate/app.py +40 -42
- universal_mcp/applications/resend/app.py +157 -154
- universal_mcp/applications/scraper/app.py +24 -24
- universal_mcp/applications/serpapi/app.py +18 -20
- universal_mcp/applications/sharepoint/app.py +46 -36
- universal_mcp/applications/slack/app.py +66 -66
- universal_mcp/applications/tavily/app.py +7 -7
- universal_mcp/applications/twitter/api_segments/compliance_api.py +17 -20
- universal_mcp/applications/twitter/api_segments/dm_conversations_api.py +35 -40
- universal_mcp/applications/twitter/api_segments/dm_events_api.py +18 -21
- universal_mcp/applications/twitter/api_segments/likes_api.py +19 -22
- universal_mcp/applications/twitter/api_segments/lists_api.py +59 -68
- universal_mcp/applications/twitter/api_segments/spaces_api.py +36 -42
- universal_mcp/applications/twitter/api_segments/trends_api.py +7 -8
- universal_mcp/applications/twitter/api_segments/tweets_api.py +159 -185
- universal_mcp/applications/twitter/api_segments/usage_api.py +5 -6
- universal_mcp/applications/twitter/api_segments/users_api.py +230 -264
- universal_mcp/applications/unipile/app.py +99 -105
- universal_mcp/applications/whatsapp/app.py +86 -82
- universal_mcp/applications/whatsapp_business/app.py +147 -147
- universal_mcp/applications/youtube/app.py +290 -290
- universal_mcp/applications/zenquotes/app.py +6 -6
- {universal_mcp_applications-0.1.13.dist-info → universal_mcp_applications-0.1.14.dist-info}/METADATA +1 -1
- {universal_mcp_applications-0.1.13.dist-info → universal_mcp_applications-0.1.14.dist-info}/RECORD +54 -54
- {universal_mcp_applications-0.1.13.dist-info → universal_mcp_applications-0.1.14.dist-info}/WHEEL +0 -0
- {universal_mcp_applications-0.1.13.dist-info → universal_mcp_applications-0.1.14.dist-info}/licenses/LICENSE +0 -0
|
@@ -13,8 +13,8 @@ class CalendlyApp(APIApplication):
|
|
|
13
13
|
self, uuid, status=None, sort=None, email=None, page_token=None, count=None
|
|
14
14
|
) -> dict[str, Any]:
|
|
15
15
|
"""
|
|
16
|
-
Retrieves a paginated list of invitees for a specific scheduled event
|
|
17
|
-
|
|
16
|
+
Retrieves a paginated list of invitees for a specific scheduled event, identified by its UUID. The results can be filtered by invitee status or email, sorted by creation date, and the list size can be controlled using pagination parameters.
|
|
17
|
+
|
|
18
18
|
Args:
|
|
19
19
|
uuid (string): uuid
|
|
20
20
|
status (string): Indicates if the invitee "canceled" or still "active" Example: 'active'.
|
|
@@ -22,10 +22,10 @@ class CalendlyApp(APIApplication):
|
|
|
22
22
|
email (string): Indicates if the results should be filtered by email address Example: '<email>'.
|
|
23
23
|
page_token (string): The token to pass to get the next or previous portion of the collection Example: '<string>'.
|
|
24
24
|
count (string): The number of rows to return Example: '20'.
|
|
25
|
-
|
|
25
|
+
|
|
26
26
|
Returns:
|
|
27
27
|
dict[str, Any]: OK
|
|
28
|
-
|
|
28
|
+
|
|
29
29
|
Tags:
|
|
30
30
|
scheduled_events, {uuid}, invitees, important
|
|
31
31
|
"""
|
|
@@ -47,16 +47,16 @@ class CalendlyApp(APIApplication):
|
|
|
47
47
|
response.raise_for_status()
|
|
48
48
|
return response.json()
|
|
49
49
|
|
|
50
|
-
def
|
|
50
|
+
def get_scheduled_event(self, uuid) -> dict[str, Any]:
|
|
51
51
|
"""
|
|
52
|
-
Retrieves details
|
|
53
|
-
|
|
52
|
+
Retrieves the details for a specific scheduled event using its unique identifier (UUID). This targets a single event instance, differentiating it from `list_events` which fetches a collection of events and `get_event_type` which retrieves an event template.
|
|
53
|
+
|
|
54
54
|
Args:
|
|
55
55
|
uuid (string): uuid
|
|
56
|
-
|
|
56
|
+
|
|
57
57
|
Returns:
|
|
58
58
|
dict[str, Any]: OK
|
|
59
|
-
|
|
59
|
+
|
|
60
60
|
Tags:
|
|
61
61
|
scheduled_events, important
|
|
62
62
|
"""
|
|
@@ -70,15 +70,15 @@ class CalendlyApp(APIApplication):
|
|
|
70
70
|
|
|
71
71
|
def get_event_invitee(self, event_uuid, invitee_uuid) -> dict[str, Any]:
|
|
72
72
|
"""
|
|
73
|
-
|
|
74
|
-
|
|
73
|
+
Fetches detailed information for a single invitee associated with a specific scheduled event. It uses both the event's UUID and the invitee's UUID to uniquely identify and retrieve the correct record, distinguishing it from `list_event_invitees` which returns a collection.
|
|
74
|
+
|
|
75
75
|
Args:
|
|
76
76
|
event_uuid (string): event_uuid
|
|
77
77
|
invitee_uuid (string): invitee_uuid
|
|
78
|
-
|
|
78
|
+
|
|
79
79
|
Returns:
|
|
80
80
|
dict[str, Any]: OK
|
|
81
|
-
|
|
81
|
+
|
|
82
82
|
Tags:
|
|
83
83
|
scheduled_events, {event_uuid}, invitees1, {invitee_uuid}
|
|
84
84
|
"""
|
|
@@ -92,7 +92,7 @@ class CalendlyApp(APIApplication):
|
|
|
92
92
|
response.raise_for_status()
|
|
93
93
|
return response.json()
|
|
94
94
|
|
|
95
|
-
def
|
|
95
|
+
def list_scheduled_events(
|
|
96
96
|
self,
|
|
97
97
|
user=None,
|
|
98
98
|
organization=None,
|
|
@@ -106,8 +106,8 @@ class CalendlyApp(APIApplication):
|
|
|
106
106
|
group=None,
|
|
107
107
|
) -> dict[str, Any]:
|
|
108
108
|
"""
|
|
109
|
-
|
|
110
|
-
|
|
109
|
+
Fetches a list of scheduled events, offering extensive filtering by user, organization, invitee email, status, and time range. Supports pagination and sorting, providing a flexible method to query specific event data from the Calendly API.
|
|
110
|
+
|
|
111
111
|
Args:
|
|
112
112
|
user (string): Return events that are scheduled with the user associated with this URI Example: '<uri>'.
|
|
113
113
|
organization (string): Return events that are scheduled with the organization associated with this URI Example: '<uri>'.
|
|
@@ -121,10 +121,10 @@ class CalendlyApp(APIApplication):
|
|
|
121
121
|
page_token (string): The token to pass to get the next or previous portion of the collection Example: '<string>'.
|
|
122
122
|
count (string): The number of rows to return Example: '20'.
|
|
123
123
|
group (string): Return events that are scheduled with the group associated with this URI Example: '<string>'.
|
|
124
|
-
|
|
124
|
+
|
|
125
125
|
Returns:
|
|
126
126
|
dict[str, Any]: OK
|
|
127
|
-
|
|
127
|
+
|
|
128
128
|
Tags:
|
|
129
129
|
scheduled_events, important
|
|
130
130
|
"""
|
|
@@ -151,14 +151,14 @@ class CalendlyApp(APIApplication):
|
|
|
151
151
|
|
|
152
152
|
def get_event_type(self, uuid) -> dict[str, Any]:
|
|
153
153
|
"""
|
|
154
|
-
Retrieves the details of a specific event type
|
|
155
|
-
|
|
154
|
+
Retrieves the full details of a specific event type, such as its name, duration, and scheduling rules, by providing its unique identifier (UUID). It fetches a single resource, unlike list_user_sevent_types which retrieves a collection.
|
|
155
|
+
|
|
156
156
|
Args:
|
|
157
157
|
uuid (string): uuid
|
|
158
|
-
|
|
158
|
+
|
|
159
159
|
Returns:
|
|
160
160
|
dict[str, Any]: OK
|
|
161
|
-
|
|
161
|
+
|
|
162
162
|
Tags:
|
|
163
163
|
event_types, {uuid}1
|
|
164
164
|
"""
|
|
@@ -170,7 +170,7 @@ class CalendlyApp(APIApplication):
|
|
|
170
170
|
response.raise_for_status()
|
|
171
171
|
return response.json()
|
|
172
172
|
|
|
173
|
-
def
|
|
173
|
+
def list_event_types(
|
|
174
174
|
self,
|
|
175
175
|
active=None,
|
|
176
176
|
organization=None,
|
|
@@ -182,8 +182,8 @@ class CalendlyApp(APIApplication):
|
|
|
182
182
|
count=None,
|
|
183
183
|
) -> dict[str, Any]:
|
|
184
184
|
"""
|
|
185
|
-
Retrieves a
|
|
186
|
-
|
|
185
|
+
Retrieves a collection of event types from the `/event_types` endpoint. Results can be filtered by user, organization, or status, and the list supports sorting and pagination for controlled data retrieval.
|
|
186
|
+
|
|
187
187
|
Args:
|
|
188
188
|
active (string): Return only active event types if true, only inactive if false, or all event types if this parameter is omitted. Example: '<boolean>'.
|
|
189
189
|
organization (string): View available personal, team, and organization event types associated with the organization's URI. Example: '<uri>'.
|
|
@@ -193,10 +193,10 @@ class CalendlyApp(APIApplication):
|
|
|
193
193
|
admin_managed (string): Return only admin managed event types if true, exclude admin managed event types if false, or include all event types if this parameter is omitted. Example: '<boolean>'.
|
|
194
194
|
page_token (string): The token to pass to get the next or previous portion of the collection Example: '<string>'.
|
|
195
195
|
count (string): The number of rows to return Example: '20'.
|
|
196
|
-
|
|
196
|
+
|
|
197
197
|
Returns:
|
|
198
198
|
dict[str, Any]: OK
|
|
199
|
-
|
|
199
|
+
|
|
200
200
|
Tags:
|
|
201
201
|
event_types
|
|
202
202
|
"""
|
|
@@ -221,14 +221,14 @@ class CalendlyApp(APIApplication):
|
|
|
221
221
|
|
|
222
222
|
def get_user(self, uuid) -> dict[str, Any]:
|
|
223
223
|
"""
|
|
224
|
-
Retrieves a user
|
|
225
|
-
|
|
224
|
+
Retrieves the details of a specific user identified by their unique identifier (UUID). This differs from `get_current_user`, which fetches the profile of the currently authenticated user.
|
|
225
|
+
|
|
226
226
|
Args:
|
|
227
227
|
uuid (string): uuid
|
|
228
|
-
|
|
228
|
+
|
|
229
229
|
Returns:
|
|
230
230
|
dict[str, Any]: OK
|
|
231
|
-
|
|
231
|
+
|
|
232
232
|
Tags:
|
|
233
233
|
users, {uuid}12
|
|
234
234
|
"""
|
|
@@ -242,11 +242,11 @@ class CalendlyApp(APIApplication):
|
|
|
242
242
|
|
|
243
243
|
def get_current_user(self) -> dict[str, Any]:
|
|
244
244
|
"""
|
|
245
|
-
Retrieves information
|
|
246
|
-
|
|
245
|
+
Retrieves profile information for the currently authenticated user by querying the `/users/me` endpoint. This function requires no parameters, unlike `get_user` which fetches a specific user by their UUID.
|
|
246
|
+
|
|
247
247
|
Returns:
|
|
248
248
|
dict[str, Any]: OK
|
|
249
|
-
|
|
249
|
+
|
|
250
250
|
Tags:
|
|
251
251
|
users, me, important
|
|
252
252
|
"""
|
|
@@ -260,8 +260,8 @@ class CalendlyApp(APIApplication):
|
|
|
260
260
|
self, uuid, count=None, page_token=None, sort=None, email=None, status=None
|
|
261
261
|
) -> dict[str, Any]:
|
|
262
262
|
"""
|
|
263
|
-
Retrieves a list of invitations for
|
|
264
|
-
|
|
263
|
+
Retrieves a paginated list of invitations for a specific organization, identified by its UUID. It allows optional filtering by email and status (e.g., pending, accepted) and sorting. This function fetches a collection of invitations, unlike `get_organization_invitation` which retrieves a single one.
|
|
264
|
+
|
|
265
265
|
Args:
|
|
266
266
|
uuid (string): uuid
|
|
267
267
|
count (string): The number of rows to return Example: '20'.
|
|
@@ -269,10 +269,10 @@ class CalendlyApp(APIApplication):
|
|
|
269
269
|
sort (string): Order results by the field name and direction specified (ascending or descending). Returns multiple sets of results in a comma-separated list. Example: 'created_at:asc'.
|
|
270
270
|
email (string): Indicates if the results should be filtered by email address Example: '<email>'.
|
|
271
271
|
status (string): Indicates if the results should be filtered by status ("pending", "accepted", or "declined") Example: 'accepted'.
|
|
272
|
-
|
|
272
|
+
|
|
273
273
|
Returns:
|
|
274
274
|
dict[str, Any]: OK
|
|
275
|
-
|
|
275
|
+
|
|
276
276
|
Tags:
|
|
277
277
|
organizations, {uuid}123, invitations
|
|
278
278
|
"""
|
|
@@ -294,10 +294,10 @@ class CalendlyApp(APIApplication):
|
|
|
294
294
|
response.raise_for_status()
|
|
295
295
|
return response.json()
|
|
296
296
|
|
|
297
|
-
def
|
|
297
|
+
def create_organization_invitation(self, uuid, email=None) -> dict[str, Any]:
|
|
298
298
|
"""
|
|
299
|
-
|
|
300
|
-
|
|
299
|
+
Invites a user via email to join a specific organization, identified by the organization's UUID. This function creates a new pending invitation, distinguishing it from functions that list, retrieve, or revoke existing invitations.
|
|
300
|
+
|
|
301
301
|
Args:
|
|
302
302
|
uuid (string): uuid
|
|
303
303
|
email (string): email
|
|
@@ -307,10 +307,10 @@ class CalendlyApp(APIApplication):
|
|
|
307
307
|
"email": "<email>"
|
|
308
308
|
}
|
|
309
309
|
```
|
|
310
|
-
|
|
310
|
+
|
|
311
311
|
Returns:
|
|
312
312
|
dict[str, Any]: Created
|
|
313
|
-
|
|
313
|
+
|
|
314
314
|
Tags:
|
|
315
315
|
organizations, {uuid}123, invitations
|
|
316
316
|
"""
|
|
@@ -328,15 +328,15 @@ class CalendlyApp(APIApplication):
|
|
|
328
328
|
|
|
329
329
|
def get_organization_invitation(self, org_uuid, uuid) -> dict[str, Any]:
|
|
330
330
|
"""
|
|
331
|
-
Retrieves
|
|
332
|
-
|
|
331
|
+
Retrieves the details of a single, specific invitation within an organization. It requires both the organization's unique identifier (`org_uuid`) and the invitation's unique identifier (`uuid`) for the lookup.
|
|
332
|
+
|
|
333
333
|
Args:
|
|
334
334
|
org_uuid (string): org_uuid
|
|
335
335
|
uuid (string): uuid
|
|
336
|
-
|
|
336
|
+
|
|
337
337
|
Returns:
|
|
338
338
|
dict[str, Any]: OK
|
|
339
|
-
|
|
339
|
+
|
|
340
340
|
Tags:
|
|
341
341
|
organizations, {org_uuid}, invitations1, {uuid}1234
|
|
342
342
|
"""
|
|
@@ -350,17 +350,17 @@ class CalendlyApp(APIApplication):
|
|
|
350
350
|
response.raise_for_status()
|
|
351
351
|
return response.json()
|
|
352
352
|
|
|
353
|
-
def
|
|
353
|
+
def revoke_user_organization_invitation(self, org_uuid, uuid) -> Any:
|
|
354
354
|
"""
|
|
355
|
-
|
|
356
|
-
|
|
355
|
+
Revokes a specific user's invitation to an organization, identified by the organization and invitation UUIDs. This action permanently deletes the pending invitation, preventing it from being accepted.
|
|
356
|
+
|
|
357
357
|
Args:
|
|
358
358
|
org_uuid (string): org_uuid
|
|
359
359
|
uuid (string): uuid
|
|
360
|
-
|
|
360
|
+
|
|
361
361
|
Returns:
|
|
362
362
|
Any: No Content
|
|
363
|
-
|
|
363
|
+
|
|
364
364
|
Tags:
|
|
365
365
|
organizations, {org_uuid}, invitations1, {uuid}1234
|
|
366
366
|
"""
|
|
@@ -376,14 +376,14 @@ class CalendlyApp(APIApplication):
|
|
|
376
376
|
|
|
377
377
|
def get_organization_membership(self, uuid) -> dict[str, Any]:
|
|
378
378
|
"""
|
|
379
|
-
|
|
380
|
-
|
|
379
|
+
Fetches the details of a specific organization membership using its unique identifier (UUID). Unlike `list_organization_memberships`, this function retrieves a single membership record rather than a collection.
|
|
380
|
+
|
|
381
381
|
Args:
|
|
382
382
|
uuid (string): uuid
|
|
383
|
-
|
|
383
|
+
|
|
384
384
|
Returns:
|
|
385
385
|
dict[str, Any]: OK
|
|
386
|
-
|
|
386
|
+
|
|
387
387
|
Tags:
|
|
388
388
|
organization_memberships, {uuid}12345
|
|
389
389
|
"""
|
|
@@ -395,16 +395,16 @@ class CalendlyApp(APIApplication):
|
|
|
395
395
|
response.raise_for_status()
|
|
396
396
|
return response.json()
|
|
397
397
|
|
|
398
|
-
def
|
|
398
|
+
def delete_organization_membership(self, uuid) -> Any:
|
|
399
399
|
"""
|
|
400
|
-
|
|
401
|
-
|
|
400
|
+
Deletes an organization membership by its unique UUID, effectively removing the associated user from the organization. This function is the destructive counterpart to `get_organization_membership` and acts on active members, not pending invitations.
|
|
401
|
+
|
|
402
402
|
Args:
|
|
403
403
|
uuid (string): uuid
|
|
404
|
-
|
|
404
|
+
|
|
405
405
|
Returns:
|
|
406
406
|
Any: No Content
|
|
407
|
-
|
|
407
|
+
|
|
408
408
|
Tags:
|
|
409
409
|
organization_memberships, {uuid}12345
|
|
410
410
|
"""
|
|
@@ -420,18 +420,18 @@ class CalendlyApp(APIApplication):
|
|
|
420
420
|
self, page_token=None, count=None, email=None, organization=None, user=None
|
|
421
421
|
) -> dict[str, Any]:
|
|
422
422
|
"""
|
|
423
|
-
Retrieves
|
|
424
|
-
|
|
423
|
+
Retrieves a paginated list of organization memberships. The results can be filtered by user, organization, or email address to narrow down the search for specific members within one or more organizations.
|
|
424
|
+
|
|
425
425
|
Args:
|
|
426
426
|
page_token (string): The token to pass to get the next or previous portion of the collection Example: '<string>'.
|
|
427
427
|
count (string): The number of rows to return Example: '20'.
|
|
428
428
|
email (string): Indicates if the results should be filtered by email address Example: '<email>'.
|
|
429
429
|
organization (string): Indicates if the results should be filtered by organization Example: '<uri>'.
|
|
430
430
|
user (string): Indicates if the results should be filtered by user Example: '<uri>'.
|
|
431
|
-
|
|
431
|
+
|
|
432
432
|
Returns:
|
|
433
433
|
dict[str, Any]: OK
|
|
434
|
-
|
|
434
|
+
|
|
435
435
|
Tags:
|
|
436
436
|
organization_memberships
|
|
437
437
|
"""
|
|
@@ -453,14 +453,14 @@ class CalendlyApp(APIApplication):
|
|
|
453
453
|
|
|
454
454
|
def get_webhook_subscription(self, webhook_uuid) -> dict[str, Any]:
|
|
455
455
|
"""
|
|
456
|
-
|
|
457
|
-
|
|
456
|
+
Fetches detailed information for a single webhook subscription using its unique identifier (UUID). Unlike `list_webhook_subscriptions`, which returns a collection, this function retrieves one specific subscription's configuration and status.
|
|
457
|
+
|
|
458
458
|
Args:
|
|
459
459
|
webhook_uuid (string): webhook_uuid
|
|
460
|
-
|
|
460
|
+
|
|
461
461
|
Returns:
|
|
462
462
|
dict[str, Any]: OK
|
|
463
|
-
|
|
463
|
+
|
|
464
464
|
Tags:
|
|
465
465
|
webhook_subscriptions, {webhook_uuid}
|
|
466
466
|
"""
|
|
@@ -474,14 +474,14 @@ class CalendlyApp(APIApplication):
|
|
|
474
474
|
|
|
475
475
|
def delete_webhook_subscription(self, webhook_uuid) -> Any:
|
|
476
476
|
"""
|
|
477
|
-
Deletes a webhook subscription
|
|
478
|
-
|
|
477
|
+
Deletes a specific webhook subscription using its unique `webhook_uuid`. This function sends a DELETE request to the Calendly API to permanently remove the subscription, stopping all future event notifications. It raises an error if the deletion fails.
|
|
478
|
+
|
|
479
479
|
Args:
|
|
480
480
|
webhook_uuid (string): webhook_uuid
|
|
481
|
-
|
|
481
|
+
|
|
482
482
|
Returns:
|
|
483
483
|
Any: No Content
|
|
484
|
-
|
|
484
|
+
|
|
485
485
|
Tags:
|
|
486
486
|
webhook_subscriptions, {webhook_uuid}
|
|
487
487
|
"""
|
|
@@ -503,8 +503,8 @@ class CalendlyApp(APIApplication):
|
|
|
503
503
|
scope=None,
|
|
504
504
|
) -> dict[str, Any]:
|
|
505
505
|
"""
|
|
506
|
-
Retrieves a
|
|
507
|
-
|
|
506
|
+
Retrieves a collection of webhook subscriptions for a given scope (organization or user). Supports filtering, sorting, and pagination to browse multiple subscriptions, unlike functions like `get_webhook_subscription` which fetches a single subscription by its unique ID.
|
|
507
|
+
|
|
508
508
|
Args:
|
|
509
509
|
organization (string): (Required) Indicates if the results should be filtered by organization Example: '<uri>'.
|
|
510
510
|
user (string): Indicates if the results should be filtered by user. This parameter is only required if the `scope` parameter is set to `user`. Example: '<uri>'.
|
|
@@ -514,10 +514,10 @@ class CalendlyApp(APIApplication):
|
|
|
514
514
|
Supported fields are: created_at.
|
|
515
515
|
Sort direction is specified as: asc, desc. Example: '<string>'.
|
|
516
516
|
scope (string): (Required) Filter the list by organization or user Example: 'user'.
|
|
517
|
-
|
|
517
|
+
|
|
518
518
|
Returns:
|
|
519
519
|
dict[str, Any]: OK
|
|
520
|
-
|
|
520
|
+
|
|
521
521
|
Tags:
|
|
522
522
|
webhook_subscriptions
|
|
523
523
|
"""
|
|
@@ -549,8 +549,8 @@ class CalendlyApp(APIApplication):
|
|
|
549
549
|
user=None,
|
|
550
550
|
) -> dict[str, Any]:
|
|
551
551
|
"""
|
|
552
|
-
Creates a
|
|
553
|
-
|
|
552
|
+
Creates a Calendly webhook subscription for specified events. It requires a callback URL, the scope (e.g., organization, user), and the list of events to monitor, registering the webhook via a POST request to the API.
|
|
553
|
+
|
|
554
554
|
Args:
|
|
555
555
|
events (array): events Example: "['invitee.canceled', 'routing_form_submission.created']".
|
|
556
556
|
group (string): group Example: '<uri>'.
|
|
@@ -574,10 +574,10 @@ class CalendlyApp(APIApplication):
|
|
|
574
574
|
"user": "<uri>"
|
|
575
575
|
}
|
|
576
576
|
```
|
|
577
|
-
|
|
577
|
+
|
|
578
578
|
Returns:
|
|
579
579
|
dict[str, Any]: Created
|
|
580
|
-
|
|
580
|
+
|
|
581
581
|
Tags:
|
|
582
582
|
webhook_subscriptions
|
|
583
583
|
"""
|
|
@@ -597,12 +597,12 @@ class CalendlyApp(APIApplication):
|
|
|
597
597
|
response.raise_for_status()
|
|
598
598
|
return response.json()
|
|
599
599
|
|
|
600
|
-
def
|
|
600
|
+
def create_limited_use_scheduling_link(
|
|
601
601
|
self, max_event_count=None, owner=None, owner_type=None
|
|
602
602
|
) -> dict[str, Any]:
|
|
603
603
|
"""
|
|
604
|
-
|
|
605
|
-
|
|
604
|
+
Generates a unique, limited-use scheduling link for a specific owner, such as an event type. The link is valid for a specified maximum number of bookings, after which it expires.
|
|
605
|
+
|
|
606
606
|
Args:
|
|
607
607
|
max_event_count (number): max_event_count Example: '1'.
|
|
608
608
|
owner (string): owner Example: '<uri>'.
|
|
@@ -615,10 +615,10 @@ class CalendlyApp(APIApplication):
|
|
|
615
615
|
"owner_type": "EventType"
|
|
616
616
|
}
|
|
617
617
|
```
|
|
618
|
-
|
|
618
|
+
|
|
619
619
|
Returns:
|
|
620
620
|
dict[str, Any]: Created
|
|
621
|
-
|
|
621
|
+
|
|
622
622
|
Tags:
|
|
623
623
|
scheduling_links
|
|
624
624
|
"""
|
|
@@ -634,10 +634,10 @@ class CalendlyApp(APIApplication):
|
|
|
634
634
|
response.raise_for_status()
|
|
635
635
|
return response.json()
|
|
636
636
|
|
|
637
|
-
def
|
|
637
|
+
def request_invitee_data_deletion(self, emails=None) -> dict[str, Any]:
|
|
638
638
|
"""
|
|
639
|
-
|
|
640
|
-
|
|
639
|
+
Submits an asynchronous data deletion request for one or more invitees, identified by their email addresses, to comply with privacy regulations. This action permanently removes invitee information from the system.
|
|
640
|
+
|
|
641
641
|
Args:
|
|
642
642
|
emails (array): emails
|
|
643
643
|
Example:
|
|
@@ -649,10 +649,10 @@ class CalendlyApp(APIApplication):
|
|
|
649
649
|
]
|
|
650
650
|
}
|
|
651
651
|
```
|
|
652
|
-
|
|
652
|
+
|
|
653
653
|
Returns:
|
|
654
654
|
dict[str, Any]: Accepted
|
|
655
|
-
|
|
655
|
+
|
|
656
656
|
Tags:
|
|
657
657
|
data_compliance, deletion, invitees12
|
|
658
658
|
"""
|
|
@@ -666,12 +666,12 @@ class CalendlyApp(APIApplication):
|
|
|
666
666
|
response.raise_for_status()
|
|
667
667
|
return response.json()
|
|
668
668
|
|
|
669
|
-
def
|
|
669
|
+
def request_scheduled_event_data_deletion(
|
|
670
670
|
self, end_time=None, start_time=None
|
|
671
671
|
) -> dict[str, Any]:
|
|
672
672
|
"""
|
|
673
|
-
|
|
674
|
-
|
|
673
|
+
For data compliance, submits an asynchronous request to delete scheduled event data within a specified `start_time` and `end_time`. This targets events by time range, unlike `delete_invitee_data` which targets specific individuals.
|
|
674
|
+
|
|
675
675
|
Args:
|
|
676
676
|
end_time (string): end_time Example: '<dateTime>'.
|
|
677
677
|
start_time (string): start_time
|
|
@@ -682,10 +682,10 @@ class CalendlyApp(APIApplication):
|
|
|
682
682
|
"start_time": "<dateTime>"
|
|
683
683
|
}
|
|
684
684
|
```
|
|
685
|
-
|
|
685
|
+
|
|
686
686
|
Returns:
|
|
687
687
|
dict[str, Any]: Accepted
|
|
688
|
-
|
|
688
|
+
|
|
689
689
|
Tags:
|
|
690
690
|
data_compliance, deletion, events
|
|
691
691
|
"""
|
|
@@ -702,14 +702,14 @@ class CalendlyApp(APIApplication):
|
|
|
702
702
|
|
|
703
703
|
def get_invitee_no_show(self, uuid) -> dict[str, Any]:
|
|
704
704
|
"""
|
|
705
|
-
Retrieves
|
|
706
|
-
|
|
705
|
+
Retrieves the details for a specific 'no-show' record associated with an invitee, identified by its unique ID (UUID). This function fetches a single record, unlike create_invitee_no_show which creates one.
|
|
706
|
+
|
|
707
707
|
Args:
|
|
708
708
|
uuid (string): uuid
|
|
709
|
-
|
|
709
|
+
|
|
710
710
|
Returns:
|
|
711
711
|
dict[str, Any]: OK
|
|
712
|
-
|
|
712
|
+
|
|
713
713
|
Tags:
|
|
714
714
|
invitee_no_shows, {uuid}123456
|
|
715
715
|
"""
|
|
@@ -721,16 +721,16 @@ class CalendlyApp(APIApplication):
|
|
|
721
721
|
response.raise_for_status()
|
|
722
722
|
return response.json()
|
|
723
723
|
|
|
724
|
-
def
|
|
724
|
+
def revoke_invitee_no_show(self, uuid) -> Any:
|
|
725
725
|
"""
|
|
726
|
-
|
|
727
|
-
|
|
726
|
+
Deletes an invitee's 'no-show' record using its unique UUID. This operation revokes the no-show status previously assigned to an invitee, effectively undoing the action of `create_invitee_no_show`.
|
|
727
|
+
|
|
728
728
|
Args:
|
|
729
729
|
uuid (string): uuid
|
|
730
|
-
|
|
730
|
+
|
|
731
731
|
Returns:
|
|
732
732
|
Any: No Content
|
|
733
|
-
|
|
733
|
+
|
|
734
734
|
Tags:
|
|
735
735
|
invitee_no_shows, {uuid}123456
|
|
736
736
|
"""
|
|
@@ -742,10 +742,10 @@ class CalendlyApp(APIApplication):
|
|
|
742
742
|
response.raise_for_status()
|
|
743
743
|
return response.json()
|
|
744
744
|
|
|
745
|
-
def
|
|
745
|
+
def mark_invitee_as_no_show(self, invitee=None) -> dict[str, Any]:
|
|
746
746
|
"""
|
|
747
|
-
|
|
748
|
-
|
|
747
|
+
Marks a specific invitee as a 'no-show' by creating a no-show record. It requires the invitee's URI and sends a POST request to the `/invitee_no_shows` endpoint, returning the details of the newly created entry.
|
|
748
|
+
|
|
749
749
|
Args:
|
|
750
750
|
invitee (string): invitee
|
|
751
751
|
Example:
|
|
@@ -754,10 +754,10 @@ class CalendlyApp(APIApplication):
|
|
|
754
754
|
"invitee": "<uri>"
|
|
755
755
|
}
|
|
756
756
|
```
|
|
757
|
-
|
|
757
|
+
|
|
758
758
|
Returns:
|
|
759
759
|
dict[str, Any]: Created
|
|
760
|
-
|
|
760
|
+
|
|
761
761
|
Tags:
|
|
762
762
|
invitee_no_shows
|
|
763
763
|
"""
|
|
@@ -771,16 +771,16 @@ class CalendlyApp(APIApplication):
|
|
|
771
771
|
response.raise_for_status()
|
|
772
772
|
return response.json()
|
|
773
773
|
|
|
774
|
-
def
|
|
774
|
+
def get_group_by_id(self, uuid) -> dict[str, Any]:
|
|
775
775
|
"""
|
|
776
|
-
Retrieves
|
|
777
|
-
|
|
776
|
+
Retrieves the details of a specific group by its unique identifier (UUID). Unlike `list_groups`, which returns multiple group records, this function fetches information for a single group.
|
|
777
|
+
|
|
778
778
|
Args:
|
|
779
779
|
uuid (string): uuid
|
|
780
|
-
|
|
780
|
+
|
|
781
781
|
Returns:
|
|
782
782
|
dict[str, Any]: OK
|
|
783
|
-
|
|
783
|
+
|
|
784
784
|
Tags:
|
|
785
785
|
groups, {uuid}1234567
|
|
786
786
|
"""
|
|
@@ -796,16 +796,16 @@ class CalendlyApp(APIApplication):
|
|
|
796
796
|
self, organization=None, page_token=None, count=None
|
|
797
797
|
) -> dict[str, Any]:
|
|
798
798
|
"""
|
|
799
|
-
Retrieves a list of groups
|
|
800
|
-
|
|
799
|
+
Retrieves a paginated list of groups associated with a specific organization. The result set can be controlled using pagination parameters for the page token and the number of items to return per page.
|
|
800
|
+
|
|
801
801
|
Args:
|
|
802
802
|
organization (string): (Required) Return groups that are associated with the organization associated with this URI Example: '<string>'.
|
|
803
803
|
page_token (string): The token to pass to get the next or previous portion of the collection Example: '<string>'.
|
|
804
804
|
count (string): The number of rows to return Example: '20'.
|
|
805
|
-
|
|
805
|
+
|
|
806
806
|
Returns:
|
|
807
807
|
dict[str, Any]: OK
|
|
808
|
-
|
|
808
|
+
|
|
809
809
|
Tags:
|
|
810
810
|
groups
|
|
811
811
|
"""
|
|
@@ -825,14 +825,14 @@ class CalendlyApp(APIApplication):
|
|
|
825
825
|
|
|
826
826
|
def get_group_relationship(self, uuid) -> dict[str, Any]:
|
|
827
827
|
"""
|
|
828
|
-
Retrieves
|
|
829
|
-
|
|
828
|
+
Retrieves the details of a specific group relationship, which connects an owner (like a user or invitation) to a group, by its unique identifier (UUID). This differs from `list_group_relationships` which fetches a list.
|
|
829
|
+
|
|
830
830
|
Args:
|
|
831
831
|
uuid (string): uuid
|
|
832
|
-
|
|
832
|
+
|
|
833
833
|
Returns:
|
|
834
834
|
dict[str, Any]: OK
|
|
835
|
-
|
|
835
|
+
|
|
836
836
|
Tags:
|
|
837
837
|
group_relationships, {uuid}12345678
|
|
838
838
|
"""
|
|
@@ -848,8 +848,8 @@ class CalendlyApp(APIApplication):
|
|
|
848
848
|
self, count=None, page_token=None, organization=None, owner=None, group=None
|
|
849
849
|
) -> dict[str, Any]:
|
|
850
850
|
"""
|
|
851
|
-
|
|
852
|
-
|
|
851
|
+
Fetches a paginated list of group relationships. The results can be filtered by organization, owner, or a specific group to refine the search and control the returned data set.
|
|
852
|
+
|
|
853
853
|
Args:
|
|
854
854
|
count (string): The number of rows to return Example: '20'.
|
|
855
855
|
page_token (string): The token to pass to get the next or previous portion of the collection Example: '<string>'.
|
|
@@ -857,10 +857,10 @@ class CalendlyApp(APIApplication):
|
|
|
857
857
|
owner (string): Indicates the results should be filtered by owner <br>
|
|
858
858
|
One Of: - Organization Membership URI - ` - Organization Invitation URI - ` Example: '<uri>'.
|
|
859
859
|
group (string): Indicates the results should be filtered by group Example: '<uri>'.
|
|
860
|
-
|
|
860
|
+
|
|
861
861
|
Returns:
|
|
862
862
|
dict[str, Any]: OK
|
|
863
|
-
|
|
863
|
+
|
|
864
864
|
Tags:
|
|
865
865
|
group_relationships
|
|
866
866
|
"""
|
|
@@ -882,14 +882,14 @@ class CalendlyApp(APIApplication):
|
|
|
882
882
|
|
|
883
883
|
def get_routing_form(self, uuid) -> dict[str, Any]:
|
|
884
884
|
"""
|
|
885
|
-
Retrieves a routing form
|
|
886
|
-
|
|
885
|
+
Retrieves the details of a specific routing form using its unique identifier (UUID). This is distinct from `list_routing_forms`, which fetches a collection, and from functions that retrieve form submissions.
|
|
886
|
+
|
|
887
887
|
Args:
|
|
888
888
|
uuid (string): uuid
|
|
889
|
-
|
|
889
|
+
|
|
890
890
|
Returns:
|
|
891
891
|
dict[str, Any]: OK
|
|
892
|
-
|
|
892
|
+
|
|
893
893
|
Tags:
|
|
894
894
|
routing_forms, {uuid}123456789
|
|
895
895
|
"""
|
|
@@ -905,17 +905,17 @@ class CalendlyApp(APIApplication):
|
|
|
905
905
|
self, organization=None, count=None, page_token=None, sort=None
|
|
906
906
|
) -> dict[str, Any]:
|
|
907
907
|
"""
|
|
908
|
-
Retrieves a list of routing forms for a specified organization
|
|
909
|
-
|
|
908
|
+
Retrieves a list of routing forms for a specified organization. This function supports pagination using a page token, sorting by creation date, and limiting the number of results returned per request, distinguishing it from `get_routing_form` which fetches a single item.
|
|
909
|
+
|
|
910
910
|
Args:
|
|
911
911
|
organization (string): (Required) View organization routing forms associated with the organization's URI. Example: '<uri>'.
|
|
912
912
|
count (string): The number of rows to return Example: '20'.
|
|
913
913
|
page_token (string): The token to pass to get the next or previous portion of the collection Example: '<string>'.
|
|
914
914
|
sort (string): Order results by the specified field and direction. Accepts comma-separated list of {field}:{direction} values. Supported fields are: created_at. Sort direction is specified as: asc, desc. Example: '<string>'.
|
|
915
|
-
|
|
915
|
+
|
|
916
916
|
Returns:
|
|
917
917
|
dict[str, Any]: OK
|
|
918
|
-
|
|
918
|
+
|
|
919
919
|
Tags:
|
|
920
920
|
routing_forms
|
|
921
921
|
"""
|
|
@@ -936,14 +936,14 @@ class CalendlyApp(APIApplication):
|
|
|
936
936
|
|
|
937
937
|
def get_routing_form_submission(self, uuid) -> dict[str, Any]:
|
|
938
938
|
"""
|
|
939
|
-
|
|
940
|
-
|
|
939
|
+
Fetches details for a single routing form submission using its unique identifier (UUID). It queries the `/routing_form_submissions/{uuid}` endpoint, distinct from `list_routing_form_submissions` which retrieves multiple submissions.
|
|
940
|
+
|
|
941
941
|
Args:
|
|
942
942
|
uuid (string): uuid
|
|
943
|
-
|
|
943
|
+
|
|
944
944
|
Returns:
|
|
945
945
|
dict[str, Any]: OK
|
|
946
|
-
|
|
946
|
+
|
|
947
947
|
Tags:
|
|
948
948
|
routing_form_submissions, {uuid}12345678910
|
|
949
949
|
"""
|
|
@@ -955,21 +955,21 @@ class CalendlyApp(APIApplication):
|
|
|
955
955
|
response.raise_for_status()
|
|
956
956
|
return response.json()
|
|
957
957
|
|
|
958
|
-
def
|
|
958
|
+
def get_routing_form_submissions(
|
|
959
959
|
self, form=None, count=None, page_token=None, sort=None
|
|
960
960
|
) -> dict[str, Any]:
|
|
961
961
|
"""
|
|
962
|
-
Retrieves
|
|
963
|
-
|
|
962
|
+
Retrieves a paginated list of submissions associated with a specific routing form. The results can be sorted by creation date and navigated using count and page_token parameters.
|
|
963
|
+
|
|
964
964
|
Args:
|
|
965
965
|
form (string): (Required) View routing form submissions associated with the routing form's URI. Example: '<uri>'.
|
|
966
966
|
count (string): The number of rows to return Example: '20'.
|
|
967
967
|
page_token (string): The token to pass to get the next or previous portion of the collection Example: '<string>'.
|
|
968
968
|
sort (string): Order results by the specified field and direction. Accepts comma-separated list of {field}:{direction} values. Supported fields are: created_at. Sort direction is specified as: asc, desc. Example: '<string>'.
|
|
969
|
-
|
|
969
|
+
|
|
970
970
|
Returns:
|
|
971
971
|
dict[str, Any]: OK
|
|
972
|
-
|
|
972
|
+
|
|
973
973
|
Tags:
|
|
974
974
|
routing_form_submissions
|
|
975
975
|
"""
|
|
@@ -992,16 +992,16 @@ class CalendlyApp(APIApplication):
|
|
|
992
992
|
self, event_type=None, start_time=None, end_time=None
|
|
993
993
|
) -> dict[str, Any]:
|
|
994
994
|
"""
|
|
995
|
-
Retrieves a list of
|
|
996
|
-
|
|
995
|
+
Retrieves a list of concrete, bookable time slots for a specific event type within a defined start and end time. It provides specific availability, distinct from functions that list a user's general busy times or configured schedules.
|
|
996
|
+
|
|
997
997
|
Args:
|
|
998
998
|
event_type (string): (Required) The uri associated with the event type Example: '<uri>'.
|
|
999
999
|
start_time (string): (Required) Start time of the requested availability range. Example: '<string>'.
|
|
1000
1000
|
end_time (string): (Required) End time of the requested availability range. Example: '<string>'.
|
|
1001
|
-
|
|
1001
|
+
|
|
1002
1002
|
Returns:
|
|
1003
1003
|
dict[str, Any]: OK
|
|
1004
|
-
|
|
1004
|
+
|
|
1005
1005
|
Tags:
|
|
1006
1006
|
event_type_available_times
|
|
1007
1007
|
"""
|
|
@@ -1033,8 +1033,8 @@ class CalendlyApp(APIApplication):
|
|
|
1033
1033
|
action=None,
|
|
1034
1034
|
) -> dict[str, Any]:
|
|
1035
1035
|
"""
|
|
1036
|
-
|
|
1037
|
-
|
|
1036
|
+
Fetches a paginated list of activity log entries for an organization. Allows advanced filtering by actor, time range, search term, namespace, and action, with support for custom sorting and pagination to refine the results.
|
|
1037
|
+
|
|
1038
1038
|
Args:
|
|
1039
1039
|
organization (string): (Required) Return activity log entries from the organization associated with this URI Example: '<uri>'.
|
|
1040
1040
|
search_term (string): Filters entries based on the search term. Supported operators: - `|` - to allow filtering by one term or another. Example: `this | that` - `+` - to allow filtering by one term and another. Example: `this + that` - `"` - to allow filtering by an exact search term. Example: `"email@website.com"` - `-` - to omit specific terms from results. Example: `Added -User` - `()` - to allow specifying precedence during a search. Example: `(this + that) OR (person + place)` - `*` - to allow prefix searching. Example `*@other-website.com` Example: '<string>'.
|
|
@@ -1046,10 +1046,10 @@ class CalendlyApp(APIApplication):
|
|
|
1046
1046
|
count (string): The number of rows to return Example: '20'.
|
|
1047
1047
|
namespace (string): The categories of the entries Example: '<string>,<string>'.
|
|
1048
1048
|
action (string): The action(s) associated with the entries Example: '<string>,<string>'.
|
|
1049
|
-
|
|
1049
|
+
|
|
1050
1050
|
Returns:
|
|
1051
1051
|
dict[str, Any]: OK
|
|
1052
|
-
|
|
1052
|
+
|
|
1053
1053
|
Tags:
|
|
1054
1054
|
activity_log_entries
|
|
1055
1055
|
"""
|
|
@@ -1074,7 +1074,7 @@ class CalendlyApp(APIApplication):
|
|
|
1074
1074
|
response.raise_for_status()
|
|
1075
1075
|
return response.json()
|
|
1076
1076
|
|
|
1077
|
-
def
|
|
1077
|
+
def create_shareable_link(
|
|
1078
1078
|
self,
|
|
1079
1079
|
availability_rule=None,
|
|
1080
1080
|
duration=None,
|
|
@@ -1088,8 +1088,8 @@ class CalendlyApp(APIApplication):
|
|
|
1088
1088
|
start_date=None,
|
|
1089
1089
|
) -> dict[str, Any]:
|
|
1090
1090
|
"""
|
|
1091
|
-
Creates a
|
|
1092
|
-
|
|
1091
|
+
Creates a custom, shareable scheduling link by defining properties like availability rules, event duration, and location. This generates a unique booking link tailored to specific settings, differing from standard event types or single-use links.
|
|
1092
|
+
|
|
1093
1093
|
Args:
|
|
1094
1094
|
availability_rule (object): availability_rule
|
|
1095
1095
|
duration (string): duration Example: '<integer>'.
|
|
@@ -1165,10 +1165,10 @@ class CalendlyApp(APIApplication):
|
|
|
1165
1165
|
"start_date": "<date>"
|
|
1166
1166
|
}
|
|
1167
1167
|
```
|
|
1168
|
-
|
|
1168
|
+
|
|
1169
1169
|
Returns:
|
|
1170
1170
|
dict[str, Any]: Created
|
|
1171
|
-
|
|
1171
|
+
|
|
1172
1172
|
Tags:
|
|
1173
1173
|
shares
|
|
1174
1174
|
"""
|
|
@@ -1195,16 +1195,16 @@ class CalendlyApp(APIApplication):
|
|
|
1195
1195
|
self, user=None, start_time=None, end_time=None
|
|
1196
1196
|
) -> dict[str, Any]:
|
|
1197
1197
|
"""
|
|
1198
|
-
|
|
1199
|
-
|
|
1198
|
+
Fetches a user's busy time intervals within a specified date range, including all scheduled events. This helps determine actual unavailability, differing from `list_user_availability_schedules` which retrieves a user's general working hours.
|
|
1199
|
+
|
|
1200
1200
|
Args:
|
|
1201
1201
|
user (string): (Required) The uri associated with the user Example: '<uri>'.
|
|
1202
1202
|
start_time (string): (Required) Start time of the requested availability range Example: '<string>'.
|
|
1203
1203
|
end_time (string): (Required) End time of the requested availability range Example: '<string>'.
|
|
1204
|
-
|
|
1204
|
+
|
|
1205
1205
|
Returns:
|
|
1206
1206
|
dict[str, Any]: OK
|
|
1207
|
-
|
|
1207
|
+
|
|
1208
1208
|
Tags:
|
|
1209
1209
|
user_busy_times
|
|
1210
1210
|
"""
|
|
@@ -1224,14 +1224,14 @@ class CalendlyApp(APIApplication):
|
|
|
1224
1224
|
|
|
1225
1225
|
def get_user_availability_schedule(self, uuid) -> dict[str, Any]:
|
|
1226
1226
|
"""
|
|
1227
|
-
Retrieves
|
|
1228
|
-
|
|
1227
|
+
Retrieves a specific user availability schedule by its unique identifier (UUID). It fetches a single schedule resource, unlike `list_user_availability_schedules`, which returns all schedules associated with a user.
|
|
1228
|
+
|
|
1229
1229
|
Args:
|
|
1230
1230
|
uuid (string): uuid
|
|
1231
|
-
|
|
1231
|
+
|
|
1232
1232
|
Returns:
|
|
1233
1233
|
dict[str, Any]: OK
|
|
1234
|
-
|
|
1234
|
+
|
|
1235
1235
|
Tags:
|
|
1236
1236
|
user_availability_schedules, {uuid}1234567891011
|
|
1237
1237
|
"""
|
|
@@ -1243,16 +1243,16 @@ class CalendlyApp(APIApplication):
|
|
|
1243
1243
|
response.raise_for_status()
|
|
1244
1244
|
return response.json()
|
|
1245
1245
|
|
|
1246
|
-
def
|
|
1246
|
+
def list_schedules_for_user(self, user=None) -> dict[str, Any]:
|
|
1247
1247
|
"""
|
|
1248
|
-
Retrieves
|
|
1249
|
-
|
|
1248
|
+
Retrieves all availability schedules for a specified user via their URI. Unlike `get_user_availability_schedule`, which fetches a single schedule by its UUID, this function returns a collection of all schedules defining a user's availability intervals.
|
|
1249
|
+
|
|
1250
1250
|
Args:
|
|
1251
1251
|
user (string): (Required) A URI reference to a user Example: '<uri>'.
|
|
1252
|
-
|
|
1252
|
+
|
|
1253
1253
|
Returns:
|
|
1254
1254
|
dict[str, Any]: OK
|
|
1255
|
-
|
|
1255
|
+
|
|
1256
1256
|
Tags:
|
|
1257
1257
|
user_availability_schedules
|
|
1258
1258
|
"""
|
|
@@ -1262,20 +1262,20 @@ class CalendlyApp(APIApplication):
|
|
|
1262
1262
|
response.raise_for_status()
|
|
1263
1263
|
return response.json()
|
|
1264
1264
|
|
|
1265
|
-
def
|
|
1265
|
+
def list_event_type_memberships(
|
|
1266
1266
|
self, event_type=None, count=None, page_token=None
|
|
1267
1267
|
) -> dict[str, Any]:
|
|
1268
1268
|
"""
|
|
1269
|
-
Retrieves paginated event type
|
|
1270
|
-
|
|
1269
|
+
Retrieves a paginated list of all user memberships (hosts) for a specific event type. It requires the event type's URI and allows for navigating through results using `count` and `page_token` parameters, returning the membership objects.
|
|
1270
|
+
|
|
1271
1271
|
Args:
|
|
1272
1272
|
event_type (string): (Required) The uri associated with the event type Example: '<uri>'.
|
|
1273
1273
|
count (string): The number of rows to return Example: '20'.
|
|
1274
1274
|
page_token (string): The token to pass to get the next or previous portion of the collection Example: '<string>'.
|
|
1275
|
-
|
|
1275
|
+
|
|
1276
1276
|
Returns:
|
|
1277
1277
|
dict[str, Any]: OK
|
|
1278
|
-
|
|
1278
|
+
|
|
1279
1279
|
Tags:
|
|
1280
1280
|
event_type_memberships
|
|
1281
1281
|
"""
|
|
@@ -1304,8 +1304,8 @@ class CalendlyApp(APIApplication):
|
|
|
1304
1304
|
timezone=None,
|
|
1305
1305
|
) -> dict[str, Any]:
|
|
1306
1306
|
"""
|
|
1307
|
-
Creates a
|
|
1308
|
-
|
|
1307
|
+
Creates a unique, non-reusable event type for a single, ad-hoc meeting. It defines event details like host, co-hosts, duration, and location, distinguishing it from standard, reusable event types.
|
|
1308
|
+
|
|
1309
1309
|
Args:
|
|
1310
1310
|
co_hosts (array): co_hosts Example: "['<uri>', '<uri>']".
|
|
1311
1311
|
date_setting (object): date_setting
|
|
@@ -1333,10 +1333,10 @@ class CalendlyApp(APIApplication):
|
|
|
1333
1333
|
"timezone": "<string>"
|
|
1334
1334
|
}
|
|
1335
1335
|
```
|
|
1336
|
-
|
|
1336
|
+
|
|
1337
1337
|
Returns:
|
|
1338
1338
|
dict[str, Any]: Created
|
|
1339
|
-
|
|
1339
|
+
|
|
1340
1340
|
Tags:
|
|
1341
1341
|
one_off_event_types
|
|
1342
1342
|
"""
|
|
@@ -1360,17 +1360,17 @@ class CalendlyApp(APIApplication):
|
|
|
1360
1360
|
self, event=None, organization=None, user=None, scope=None
|
|
1361
1361
|
) -> dict[str, Any]:
|
|
1362
1362
|
"""
|
|
1363
|
-
|
|
1364
|
-
|
|
1363
|
+
Fetches a sample webhook data payload for a specified event, organization, and scope. This helps developers preview the JSON structure for a webhook notification, facilitating testing and integration without needing to trigger a live event.
|
|
1364
|
+
|
|
1365
1365
|
Args:
|
|
1366
1366
|
event (string): (Required) Example: 'invitee.created'.
|
|
1367
1367
|
organization (string): (Required) Example: '<uri>'.
|
|
1368
1368
|
user (string): Specifies the user identifier or name for filtering or retrieving specific data in the response. Example: '<uri>'.
|
|
1369
1369
|
scope (string): (Required) Example: 'user'.
|
|
1370
|
-
|
|
1370
|
+
|
|
1371
1371
|
Returns:
|
|
1372
1372
|
dict[str, Any]: OK
|
|
1373
|
-
|
|
1373
|
+
|
|
1374
1374
|
Tags:
|
|
1375
1375
|
sample_webhook_data
|
|
1376
1376
|
"""
|
|
@@ -1392,45 +1392,45 @@ class CalendlyApp(APIApplication):
|
|
|
1392
1392
|
def list_tools(self):
|
|
1393
1393
|
return [
|
|
1394
1394
|
self.list_event_invitees,
|
|
1395
|
-
self.
|
|
1395
|
+
self.get_scheduled_event,
|
|
1396
1396
|
self.get_event_invitee,
|
|
1397
|
-
self.
|
|
1397
|
+
self.list_scheduled_events,
|
|
1398
1398
|
self.get_event_type,
|
|
1399
|
-
self.
|
|
1399
|
+
self.list_event_types,
|
|
1400
1400
|
self.get_user,
|
|
1401
1401
|
self.get_current_user,
|
|
1402
1402
|
self.list_organization_invitations,
|
|
1403
|
-
self.
|
|
1403
|
+
self.create_organization_invitation,
|
|
1404
1404
|
self.get_organization_invitation,
|
|
1405
|
-
self.
|
|
1405
|
+
self.revoke_user_organization_invitation,
|
|
1406
1406
|
self.get_organization_membership,
|
|
1407
|
-
self.
|
|
1407
|
+
self.delete_organization_membership,
|
|
1408
1408
|
self.list_organization_memberships,
|
|
1409
1409
|
self.get_webhook_subscription,
|
|
1410
1410
|
self.delete_webhook_subscription,
|
|
1411
1411
|
self.list_webhook_subscriptions,
|
|
1412
1412
|
self.create_webhook_subscription,
|
|
1413
|
-
self.
|
|
1414
|
-
self.
|
|
1415
|
-
self.
|
|
1413
|
+
self.create_limited_use_scheduling_link,
|
|
1414
|
+
self.request_invitee_data_deletion,
|
|
1415
|
+
self.request_scheduled_event_data_deletion,
|
|
1416
1416
|
self.get_invitee_no_show,
|
|
1417
|
-
self.
|
|
1418
|
-
self.
|
|
1419
|
-
self.
|
|
1417
|
+
self.revoke_invitee_no_show,
|
|
1418
|
+
self.mark_invitee_as_no_show,
|
|
1419
|
+
self.get_group_by_id,
|
|
1420
1420
|
self.list_groups,
|
|
1421
1421
|
self.get_group_relationship,
|
|
1422
1422
|
self.list_group_relationships,
|
|
1423
1423
|
self.get_routing_form,
|
|
1424
1424
|
self.list_routing_forms,
|
|
1425
1425
|
self.get_routing_form_submission,
|
|
1426
|
-
self.
|
|
1426
|
+
self.get_routing_form_submissions,
|
|
1427
1427
|
self.list_event_type_available_times,
|
|
1428
1428
|
self.list_activity_log_entries,
|
|
1429
|
-
self.
|
|
1429
|
+
self.create_shareable_link,
|
|
1430
1430
|
self.list_user_busy_times,
|
|
1431
1431
|
self.get_user_availability_schedule,
|
|
1432
|
-
self.
|
|
1433
|
-
self.
|
|
1432
|
+
self.list_schedules_for_user,
|
|
1433
|
+
self.list_event_type_memberships,
|
|
1434
1434
|
self.create_one_off_event_type,
|
|
1435
1435
|
self.get_sample_webhook_data,
|
|
1436
1436
|
]
|