Skip to content

Commit 52b9d51

Browse files
committed
updated docs
1 parent de2cfaf commit 52b9d51

1 file changed

Lines changed: 3 additions & 64 deletions

File tree

apps/docs/content/docs/en/tools/calendly.mdx

Lines changed: 3 additions & 64 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Retrieve a list of all event types for a user or organization
4848
| `count` | number | No | Number of results per page \(default: 20, max: 100\) |
4949
| `pageToken` | string | No | Page token for pagination |
5050
| `sort` | string | No | Sort order for results \(e.g., "name:asc", "name:desc"\) |
51-
| `active` | boolean | No | Filter by active status \(true for active, false for inactive\) |
51+
| `active` | boolean | No | When true, show only active event types. When false or unchecked, show all event types \(both active and inactive\). |
5252

5353
#### Output
5454

@@ -82,8 +82,8 @@ Retrieve a list of scheduled events for a user or organization
8282
| Parameter | Type | Required | Description |
8383
| --------- | ---- | -------- | ----------- |
8484
| `apiKey` | string | Yes | Calendly Personal Access Token |
85-
| `user` | string | No | Return events that belong to this user \(URI format\) |
86-
| `organization` | string | No | Return events that belong to this organization \(URI format\) |
85+
| `user` | string | No | Return events that belong to this user \(URI format\). Either "user" or "organization" must be provided. |
86+
| `organization` | string | No | Return events that belong to this organization \(URI format\). Either "user" or "organization" must be provided. |
8787
| `invitee_email` | string | No | Return events where invitee has this email |
8888
| `count` | number | No | Number of results per page \(default: 20, max: 100\) |
8989
| `max_start_time` | string | No | Return events with start time before this time \(ISO 8601 format\) |
@@ -155,67 +155,6 @@ Cancel a scheduled event
155155
| --------- | ---- | ----------- |
156156
| `resource` | object | Cancellation details |
157157

158-
### `calendly_list_webhooks`
159-
160-
Retrieve a list of webhook subscriptions for an organization
161-
162-
#### Input
163-
164-
| Parameter | Type | Required | Description |
165-
| --------- | ---- | -------- | ----------- |
166-
| `apiKey` | string | Yes | Calendly Personal Access Token |
167-
| `organization` | string | Yes | Organization URI to list webhooks for |
168-
| `count` | number | No | Number of results per page \(default: 20, max: 100\) |
169-
| `pageToken` | string | No | Page token for pagination |
170-
| `scope` | string | No | Filter by scope \("organization" or "user"\) |
171-
| `user` | string | No | Filter webhooks by user URI \(for user-scoped webhooks\) |
172-
173-
#### Output
174-
175-
| Parameter | Type | Description |
176-
| --------- | ---- | ----------- |
177-
| `collection` | array | Array of webhook subscription objects |
178-
179-
### `calendly_create_webhook`
180-
181-
Create a new webhook subscription to receive real-time event notifications
182-
183-
#### Input
184-
185-
| Parameter | Type | Required | Description |
186-
| --------- | ---- | -------- | ----------- |
187-
| `apiKey` | string | Yes | Calendly Personal Access Token |
188-
| `url` | string | Yes | URL to receive webhook events \(must be HTTPS\) |
189-
| `events` | json | Yes | Array of event types to subscribe to \(e.g., \["invitee.created", "invitee.canceled"\]\) |
190-
| `organization` | string | Yes | Organization URI |
191-
| `user` | string | No | User URI \(required for user-scoped webhooks\) |
192-
| `scope` | string | Yes | Webhook scope: "organization" or "user" |
193-
| `signing_key` | string | No | Optional signing key to verify webhook signatures |
194-
195-
#### Output
196-
197-
| Parameter | Type | Description |
198-
| --------- | ---- | ----------- |
199-
| `resource` | object | Created webhook subscription details |
200-
201-
### `calendly_delete_webhook`
202-
203-
Delete a webhook subscription
204-
205-
#### Input
206-
207-
| Parameter | Type | Required | Description |
208-
| --------- | ---- | -------- | ----------- |
209-
| `apiKey` | string | Yes | Calendly Personal Access Token |
210-
| `webhookUuid` | string | Yes | Webhook subscription UUID to delete \(can be full URI or just the UUID\) |
211-
212-
#### Output
213-
214-
| Parameter | Type | Description |
215-
| --------- | ---- | ----------- |
216-
| `deleted` | boolean | Whether the webhook was successfully deleted |
217-
| `message` | string | Status message |
218-
219158

220159

221160
## Notes

0 commit comments

Comments
 (0)