You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pages/enterprise-features/api/api-reference.mdoc
+20-2Lines changed: 20 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -21,8 +21,26 @@ Please note that the V1 API will be officially deprecated starting January 2025.
21
21
- **Performance Improvements**: V2 has been optimized for better performance and scalability.
22
22
- **User friendly response objects**: In V2 we have focused heavily on improving the response object for a better User Experience.
23
23
- **Enhanced Security**: V2 includes improved security measures to protect your data.
24
-
- **New Features**: V2 introduces new functionalities that are not present in V1, allowing you more flexibility with Cal.com application and usage.
24
+
25
+
### Admin access
26
+
27
+
With V2 we're supporting System Wide Admin access and Organization Admin access.
28
+
29
+
#### Key points
30
+
31
+
- The system wide admin has access to all resources via regular endpoints.
32
+
- The organization admin has dedicated endpoints allowing them organization wide resource access. These endpoints follow the general path of `/organizations/:orgId/<resource>`.
33
+
- The API Key can be created (here)[https://app.cal.com/settings/developer/api-keys] and depending on the role of the user, their API access will be settled. That is,
34
+
- for a non-admin user, the API key created here will give them access to their own resources.
35
+
- for a system wide admin, the API key created here will give them access to all resources, system-wide.
36
+
- for an organization owner or admin, the API key created here will give them access to all resources, organization-wide.
25
37
26
38
We are committed to supporting our community during this transition. If you have any questions or need assistance with migrating to the V2 API, please refer to our [migration guide](#) or contact our support team.
Attendees allows you to CRUD the data related to who is attending a particular booking. Useful if you want to create events where many people are invited.
Copy file name to clipboardExpand all lines: pages/enterprise-features/api/api-reference/v1/payments.mdoc
+37Lines changed: 37 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,43 @@
2
2
title: Payments
3
3
---
4
4
5
+
## Payment Object
6
+
7
+
{% jsonSchemaRenderer schema={
8
+
properties: {
9
+
available: {
10
+
type: "array",
11
+
description: "Available funds that you can transfer or pay out automatically by Stripe or explicitly through the Transfers API or Payouts API. You can find the available balance for each currency and payment type in the source_types property.",
currency: { type: "string", description: "Three-letter ISO currency code, in lowercase. Must be a supported currency."}
17
+
}
18
+
}
19
+
},
20
+
pending: {
21
+
type: "array",
22
+
description: "Funds that aren't available in the balance yet. You can find the pending balance for each currency and each payment type in the source_types property.",
0 commit comments