diff --git a/apps/api/v2/src/ee/bookings/2024-08-13/controllers/e2e/team-bookings.e2e-spec.ts b/apps/api/v2/src/ee/bookings/2024-08-13/controllers/e2e/team-bookings.e2e-spec.ts index 289e0acfc6..4eb60ae073 100644 --- a/apps/api/v2/src/ee/bookings/2024-08-13/controllers/e2e/team-bookings.e2e-spec.ts +++ b/apps/api/v2/src/ee/bookings/2024-08-13/controllers/e2e/team-bookings.e2e-spec.ts @@ -951,6 +951,75 @@ describe("Bookings Endpoints 2024-08-13", () => { } }); }); + + it("should reschedule a team RR booking and use rrHostSubsetIds to force teamUser2 as host", async () => { + const createBody: CreateBookingInput_2024_08_13 = { + start: new Date(Date.UTC(2030, 0, 10, 10, 0, 0)).toISOString(), + eventTypeId: team2RREventTypeId, + attendee: { + name: "reschedule-test", + email: "reschedule-test@gmail.com", + timeZone: "Europe/Rome", + language: "it", + }, + meetingUrl: "https://meet.google.com/abc-def-ghi", + rrHostSubsetIds: [teamUser.id], + }; + + const createResponse = await request(app.getHttpServer()) + .post("/v2/bookings") + .send(createBody) + .set(CAL_API_VERSION_HEADER, VERSION_2024_08_13) + .expect(201); + + const createResponseBody: CreateBookingOutput_2024_08_13 = createResponse.body; + expect(responseDataIsBooking(createResponseBody.data)).toBe(true); + + if (!responseDataIsBooking(createResponseBody.data)) { + throw new Error("Invalid response data - expected booking"); + } + + const createdBooking: BookingOutput_2024_08_13 = createResponseBody.data; + expect(createdBooking.hosts[0].id).toEqual(teamUser.id); + + const rescheduleBody: RescheduleBookingInput_2024_08_13 = { + start: new Date(Date.UTC(2030, 0, 10, 12, 0, 0)).toISOString(), + reschedulingReason: "Need to change host", + rrHostSubsetIds: [teamUser2.id], + }; + + return request(app.getHttpServer()) + .post(`/v2/bookings/${createdBooking.uid}/reschedule`) + .send(rescheduleBody) + .set(CAL_API_VERSION_HEADER, VERSION_2024_08_13) + .expect(201) + .then(async (response) => { + const responseBody: RescheduleBookingOutput_2024_08_13 = response.body; + expect(responseBody.status).toEqual(SUCCESS_STATUS); + expect(responseBody.data).toBeDefined(); + expect(responseDataIsBooking(responseBody.data)).toBe(true); + + if (responseDataIsBooking(responseBody.data)) { + const data: BookingOutput_2024_08_13 = responseBody.data; + expect(data.id).toBeDefined(); + expect(data.uid).toBeDefined(); + expect(data.hosts.length).toEqual(1); + expect(data.hosts[0].id).toEqual(teamUser2.id); + expect(data.status).toEqual("accepted"); + expect(data.start).toEqual(rescheduleBody.start); + expect(data.end).toEqual(new Date(Date.UTC(2030, 0, 10, 13, 0, 0)).toISOString()); + expect(data.duration).toEqual(60); + expect(data.eventTypeId).toEqual(team2RREventTypeId); + expect(data.attendees.length).toEqual(1); + expect(data.attendees[0].email).toEqual(createBody.attendee.email); + expect(data.absentHost).toEqual(false); + } else { + throw new Error( + "Invalid response data - expected booking but received array of possibly recurring bookings" + ); + } + }); + }); }); describe("book using teamSlug, eventTypeSlug and organizationSlug", () => { diff --git a/apps/api/v2/src/ee/bookings/2024-08-13/services/input.service.ts b/apps/api/v2/src/ee/bookings/2024-08-13/services/input.service.ts index 01acbd1903..9deb349e13 100644 --- a/apps/api/v2/src/ee/bookings/2024-08-13/services/input.service.ts +++ b/apps/api/v2/src/ee/bookings/2024-08-13/services/input.service.ts @@ -799,6 +799,7 @@ export class InputBookingsService_2024_08_13 { }, rescheduleUid: bookingUid, verificationCode: inputBooking.emailVerificationCode, + rrHostSubsetIds: inputBooking.rrHostSubsetIds, }; } diff --git a/biome.json b/biome.json index 07fd71d256..863f4674b5 100644 --- a/biome.json +++ b/biome.json @@ -65,7 +65,8 @@ "!!packages/lib/raqb/resolveQueryValue.test.ts", "!!packages/ui/components/editor/plugins/ToolbarPlugin.tsx", "!!packages/embeds/embed-core/src/lib/domUtils.ts" - ] + ], + "maxSize": 2097152 }, "javascript": { "parser": { @@ -93,11 +94,6 @@ } }, "overrides": [ - { - "includes": ["docs/api-reference/v2/openapi.json"], - "linter": { "enabled": false }, - "formatter": { "enabled": false } - }, { "includes": ["**/*.tsx"], "javascript": { diff --git a/docs/api-reference/v2/openapi.json b/docs/api-reference/v2/openapi.json index 8c3870e063..af8068f81e 100644 --- a/docs/api-reference/v2/openapi.json +++ b/docs/api-reference/v2/openapi.json @@ -61,9 +61,7 @@ } } }, - "tags": [ - "Orgs / Attributes" - ] + "tags": ["Orgs / Attributes"] }, "post": { "operationId": "OrganizationsAttributesController_createOrganizationAttribute", @@ -109,9 +107,7 @@ } } }, - "tags": [ - "Orgs / Attributes" - ] + "tags": ["Orgs / Attributes"] } }, "/v2/organizations/{orgId}/attributes/{attributeId}": { @@ -157,9 +153,7 @@ } } }, - "tags": [ - "Orgs / Attributes" - ] + "tags": ["Orgs / Attributes"] }, "patch": { "operationId": "OrganizationsAttributesController_updateOrganizationAttribute", @@ -213,9 +207,7 @@ } } }, - "tags": [ - "Orgs / Attributes" - ] + "tags": ["Orgs / Attributes"] }, "delete": { "operationId": "OrganizationsAttributesController_deleteOrganizationAttribute", @@ -259,9 +251,7 @@ } } }, - "tags": [ - "Orgs / Attributes" - ] + "tags": ["Orgs / Attributes"] } }, "/v2/organizations/{orgId}/attributes/{attributeId}/options": { @@ -317,9 +307,7 @@ } } }, - "tags": [ - "Orgs / Attributes / Options" - ] + "tags": ["Orgs / Attributes / Options"] }, "get": { "operationId": "OrganizationsAttributesOptionsController_getOrganizationAttributeOptions", @@ -363,9 +351,7 @@ } } }, - "tags": [ - "Orgs / Attributes / Options" - ] + "tags": ["Orgs / Attributes / Options"] } }, "/v2/organizations/{orgId}/attributes/{attributeId}/options/{optionId}": { @@ -419,9 +405,7 @@ } } }, - "tags": [ - "Orgs / Attributes / Options" - ] + "tags": ["Orgs / Attributes / Options"] }, "patch": { "operationId": "OrganizationsAttributesOptionsController_updateOrganizationAttributeOption", @@ -483,9 +467,7 @@ } } }, - "tags": [ - "Orgs / Attributes / Options" - ] + "tags": ["Orgs / Attributes / Options"] } }, "/v2/organizations/{orgId}/attributes/{attributeId}/options/assigned": { @@ -575,9 +557,7 @@ } } }, - "tags": [ - "Orgs / Attributes / Options" - ] + "tags": ["Orgs / Attributes / Options"] } }, "/v2/organizations/{orgId}/attributes/slugs/{attributeSlug}/options/assigned": { @@ -667,9 +647,7 @@ } } }, - "tags": [ - "Orgs / Attributes / Options" - ] + "tags": ["Orgs / Attributes / Options"] } }, "/v2/organizations/{orgId}/attributes/options/{userId}": { @@ -725,9 +703,7 @@ } } }, - "tags": [ - "Orgs / Attributes / Options" - ] + "tags": ["Orgs / Attributes / Options"] }, "get": { "operationId": "OrganizationsAttributesOptionsController_getOrganizationAttributeOptionsForUser", @@ -771,9 +747,7 @@ } } }, - "tags": [ - "Orgs / Attributes / Options" - ] + "tags": ["Orgs / Attributes / Options"] } }, "/v2/organizations/{orgId}/attributes/options/{userId}/{attributeOptionId}": { @@ -827,9 +801,7 @@ } } }, - "tags": [ - "Orgs / Attributes / Options" - ] + "tags": ["Orgs / Attributes / Options"] } }, "/v2/organizations/{orgId}/bookings": { @@ -874,13 +846,7 @@ "type": "array", "items": { "type": "string", - "enum": [ - "upcoming", - "recurring", - "past", - "cancelled", - "unconfirmed" - ] + "enum": ["upcoming", "recurring", "past", "cancelled", "unconfirmed"] } } }, @@ -1021,10 +987,7 @@ "description": "Sort results by their start time in ascending or descending order.", "example": "?sortStart=asc OR ?sortStart=desc", "schema": { - "enum": [ - "asc", - "desc" - ], + "enum": ["asc", "desc"], "type": "string" } }, @@ -1035,10 +998,7 @@ "description": "Sort results by their end time in ascending or descending order.", "example": "?sortEnd=asc OR ?sortEnd=desc", "schema": { - "enum": [ - "asc", - "desc" - ], + "enum": ["asc", "desc"], "type": "string" } }, @@ -1049,10 +1009,7 @@ "description": "Sort results by their creation time (when booking was made) in ascending or descending order.", "example": "?sortCreated=asc OR ?sortCreated=desc", "schema": { - "enum": [ - "asc", - "desc" - ], + "enum": ["asc", "desc"], "type": "string" } }, @@ -1063,10 +1020,7 @@ "description": "Sort results by their updated time (for example when booking status changes) in ascending or descending order.", "example": "?sortUpdated=asc OR ?sortUpdated=desc", "schema": { - "enum": [ - "asc", - "desc" - ], + "enum": ["asc", "desc"], "type": "string" } }, @@ -1123,9 +1077,7 @@ } } }, - "tags": [ - "Orgs / Bookings" - ] + "tags": ["Orgs / Bookings"] } }, "/v2/organizations/{orgId}/delegation-credentials": { @@ -1191,9 +1143,7 @@ } } }, - "tags": [ - "Orgs / Delegation Credentials" - ] + "tags": ["Orgs / Delegation Credentials"] } }, "/v2/organizations/{orgId}/delegation-credentials/{credentialId}": { @@ -1267,9 +1217,7 @@ } } }, - "tags": [ - "Orgs / Delegation Credentials" - ] + "tags": ["Orgs / Delegation Credentials"] } }, "/v2/organizations/{orgId}/memberships": { @@ -1350,9 +1298,7 @@ } } }, - "tags": [ - "Orgs / Memberships" - ] + "tags": ["Orgs / Memberships"] }, "post": { "operationId": "OrganizationsMembershipsController_createMembership", @@ -1416,9 +1362,7 @@ } } }, - "tags": [ - "Orgs / Memberships" - ] + "tags": ["Orgs / Memberships"] } }, "/v2/organizations/{orgId}/memberships/{membershipId}": { @@ -1482,9 +1426,7 @@ } } }, - "tags": [ - "Orgs / Memberships" - ] + "tags": ["Orgs / Memberships"] }, "delete": { "operationId": "OrganizationsMembershipsController_deleteMembership", @@ -1546,9 +1488,7 @@ } } }, - "tags": [ - "Orgs / Memberships" - ] + "tags": ["Orgs / Memberships"] }, "patch": { "operationId": "OrganizationsMembershipsController_updateMembership", @@ -1620,9 +1560,7 @@ } } }, - "tags": [ - "Orgs / Memberships" - ] + "tags": ["Orgs / Memberships"] } }, "/v2/organizations/{orgId}/roles": { @@ -1688,9 +1626,7 @@ } } }, - "tags": [ - "Orgs / Roles" - ] + "tags": ["Orgs / Roles"] }, "get": { "operationId": "OrganizationsRolesController_getAllRoles", @@ -1769,9 +1705,7 @@ } } }, - "tags": [ - "Orgs / Roles" - ] + "tags": ["Orgs / Roles"] } }, "/v2/organizations/{orgId}/roles/{roleId}": { @@ -1835,9 +1769,7 @@ } } }, - "tags": [ - "Orgs / Roles" - ] + "tags": ["Orgs / Roles"] }, "patch": { "operationId": "OrganizationsRolesController_updateRole", @@ -1909,9 +1841,7 @@ } } }, - "tags": [ - "Orgs / Roles" - ] + "tags": ["Orgs / Roles"] }, "delete": { "operationId": "OrganizationsRolesController_deleteRole", @@ -1973,9 +1903,7 @@ } } }, - "tags": [ - "Orgs / Roles" - ] + "tags": ["Orgs / Roles"] } }, "/v2/organizations/{orgId}/roles/{roleId}/permissions": { @@ -2049,9 +1977,7 @@ } } }, - "tags": [ - "Orgs / Roles / Permissions" - ] + "tags": ["Orgs / Roles / Permissions"] }, "get": { "operationId": "OrganizationsRolesPermissionsController_listPermissions", @@ -2113,9 +2039,7 @@ } } }, - "tags": [ - "Orgs / Roles / Permissions" - ] + "tags": ["Orgs / Roles / Permissions"] }, "put": { "operationId": "OrganizationsRolesPermissionsController_setPermissions", @@ -2187,9 +2111,7 @@ } } }, - "tags": [ - "Orgs / Roles / Permissions" - ] + "tags": ["Orgs / Roles / Permissions"] }, "delete": { "operationId": "OrganizationsRolesPermissionsController_removePermissions", @@ -2317,9 +2239,7 @@ "description": "" } }, - "tags": [ - "Orgs / Roles / Permissions" - ] + "tags": ["Orgs / Roles / Permissions"] } }, "/v2/organizations/{orgId}/roles/{roleId}/permissions/{permission}": { @@ -2384,9 +2304,7 @@ "description": "" } }, - "tags": [ - "Orgs / Roles / Permissions" - ] + "tags": ["Orgs / Roles / Permissions"] } }, "/v2/organizations/{orgId}/routing-forms": { @@ -2435,10 +2353,7 @@ "in": "query", "description": "Sort by creation time", "schema": { - "enum": [ - "asc", - "desc" - ], + "enum": ["asc", "desc"], "type": "string" } }, @@ -2448,10 +2363,7 @@ "in": "query", "description": "Sort by update time", "schema": { - "enum": [ - "asc", - "desc" - ], + "enum": ["asc", "desc"], "type": "string" } }, @@ -2530,9 +2442,7 @@ } } }, - "tags": [ - "Orgs / Routing forms" - ] + "tags": ["Orgs / Routing forms"] } }, "/v2/organizations/{orgId}/routing-forms/{routingFormId}/responses": { @@ -2589,10 +2499,7 @@ "in": "query", "description": "Sort by creation time", "schema": { - "enum": [ - "asc", - "desc" - ], + "enum": ["asc", "desc"], "type": "string" } }, @@ -2602,10 +2509,7 @@ "in": "query", "description": "Sort by update time", "schema": { - "enum": [ - "asc", - "desc" - ], + "enum": ["asc", "desc"], "type": "string" } }, @@ -2671,9 +2575,7 @@ } } }, - "tags": [ - "Orgs / Routing forms" - ] + "tags": ["Orgs / Routing forms"] }, "post": { "operationId": "OrganizationsRoutingFormsResponsesController_createRoutingFormResponse", @@ -2751,10 +2653,7 @@ "description": "Format of slot times in response. Use 'range' to get start and end times.", "example": "range", "schema": { - "enum": [ - "range", - "time" - ], + "enum": ["range", "time"], "type": "string" } }, @@ -2791,9 +2690,7 @@ } } }, - "tags": [ - "Orgs / Routing forms" - ] + "tags": ["Orgs / Routing forms"] } }, "/v2/organizations/{orgId}/routing-forms/{routingFormId}/responses/{responseId}": { @@ -2857,9 +2754,7 @@ } } }, - "tags": [ - "Orgs / Routing forms" - ] + "tags": ["Orgs / Routing forms"] } }, "/v2/organizations/{orgId}/schedules": { @@ -2940,9 +2835,7 @@ } } }, - "tags": [ - "Orgs / Schedules" - ] + "tags": ["Orgs / Schedules"] } }, "/v2/organizations/{orgId}/teams": { @@ -3023,9 +2916,7 @@ } } }, - "tags": [ - "Orgs / Teams" - ] + "tags": ["Orgs / Teams"] }, "post": { "operationId": "OrganizationsTeamsController_createTeam", @@ -3089,9 +2980,7 @@ } } }, - "tags": [ - "Orgs / Teams" - ] + "tags": ["Orgs / Teams"] } }, "/v2/organizations/{orgId}/teams/me": { @@ -3172,9 +3061,7 @@ } } }, - "tags": [ - "Orgs / Teams" - ] + "tags": ["Orgs / Teams"] } }, "/v2/organizations/{orgId}/teams/{teamId}": { @@ -3222,9 +3109,7 @@ } } }, - "tags": [ - "Orgs / Teams" - ] + "tags": ["Orgs / Teams"] }, "delete": { "operationId": "OrganizationsTeamsController_deleteTeam", @@ -3286,9 +3171,7 @@ } } }, - "tags": [ - "Orgs / Teams" - ] + "tags": ["Orgs / Teams"] }, "patch": { "operationId": "OrganizationsTeamsController_updateTeam", @@ -3360,9 +3243,7 @@ } } }, - "tags": [ - "Orgs / Teams" - ] + "tags": ["Orgs / Teams"] } }, "/v2/organizations/{orgId}/teams/{teamId}/bookings": { @@ -3407,13 +3288,7 @@ "type": "array", "items": { "type": "string", - "enum": [ - "upcoming", - "recurring", - "past", - "cancelled", - "unconfirmed" - ] + "enum": ["upcoming", "recurring", "past", "cancelled", "unconfirmed"] } } }, @@ -3494,10 +3369,7 @@ "description": "Sort results by their start time in ascending or descending order.", "example": "?sortStart=asc OR ?sortStart=desc", "schema": { - "enum": [ - "asc", - "desc" - ], + "enum": ["asc", "desc"], "type": "string" } }, @@ -3508,10 +3380,7 @@ "description": "Sort results by their end time in ascending or descending order.", "example": "?sortEnd=asc OR ?sortEnd=desc", "schema": { - "enum": [ - "asc", - "desc" - ], + "enum": ["asc", "desc"], "type": "string" } }, @@ -3522,10 +3391,7 @@ "description": "Sort results by their creation time (when booking was made) in ascending or descending order.", "example": "?sortCreated=asc OR ?sortCreated=desc", "schema": { - "enum": [ - "asc", - "desc" - ], + "enum": ["asc", "desc"], "type": "string" } }, @@ -3581,9 +3447,7 @@ } } }, - "tags": [ - "Orgs / Teams / Bookings" - ] + "tags": ["Orgs / Teams / Bookings"] } }, "/v2/organizations/{orgId}/teams/{teamId}/bookings/{bookingUid}/references": { @@ -3657,9 +3521,7 @@ } } }, - "tags": [ - "Orgs / Teams / Bookings" - ] + "tags": ["Orgs / Teams / Bookings"] } }, "/v2/organizations/{orgId}/teams/{teamId}/conferencing/{app}/connect": { @@ -3689,9 +3551,7 @@ "in": "path", "description": "Conferencing application type", "schema": { - "enum": [ - "google-meet" - ], + "enum": ["google-meet"], "type": "string" } } @@ -3708,9 +3568,7 @@ } } }, - "tags": [ - "Orgs / Teams / Conferencing" - ] + "tags": ["Orgs / Teams / Conferencing"] } }, "/v2/organizations/{orgId}/teams/{teamId}/conferencing/{app}/oauth/auth-url": { @@ -3748,10 +3606,7 @@ "in": "path", "description": "Conferencing application type", "schema": { - "enum": [ - "zoom", - "msteams" - ], + "enum": ["zoom", "msteams"], "type": "string" } }, @@ -3784,9 +3639,7 @@ } } }, - "tags": [ - "Orgs / Teams / Conferencing" - ] + "tags": ["Orgs / Teams / Conferencing"] } }, "/v2/organizations/{orgId}/teams/{teamId}/conferencing": { @@ -3815,9 +3668,7 @@ } } }, - "tags": [ - "Orgs / Teams / Conferencing" - ] + "tags": ["Orgs / Teams / Conferencing"] } }, "/v2/organizations/{orgId}/teams/{teamId}/conferencing/{app}/default": { @@ -3839,12 +3690,7 @@ "in": "path", "description": "Conferencing application type", "schema": { - "enum": [ - "google-meet", - "zoom", - "msteams", - "daily-video" - ], + "enum": ["google-meet", "zoom", "msteams", "daily-video"], "type": "string" } } @@ -3861,9 +3707,7 @@ } } }, - "tags": [ - "Orgs / Teams / Conferencing" - ] + "tags": ["Orgs / Teams / Conferencing"] } }, "/v2/organizations/{orgId}/teams/{teamId}/conferencing/default": { @@ -3885,12 +3729,7 @@ "in": "path", "description": "Conferencing application type", "schema": { - "enum": [ - "google-meet", - "zoom", - "msteams", - "daily-video" - ], + "enum": ["google-meet", "zoom", "msteams", "daily-video"], "type": "string" } } @@ -3907,9 +3746,7 @@ } } }, - "tags": [ - "Orgs / Teams / Conferencing" - ] + "tags": ["Orgs / Teams / Conferencing"] } }, "/v2/organizations/{orgId}/teams/{teamId}/conferencing/{app}/disconnect": { @@ -3931,11 +3768,7 @@ "in": "path", "description": "Conferencing application type", "schema": { - "enum": [ - "google-meet", - "zoom", - "msteams" - ], + "enum": ["google-meet", "zoom", "msteams"], "type": "string" } } @@ -3952,9 +3785,7 @@ } } }, - "tags": [ - "Orgs / Teams / Conferencing" - ] + "tags": ["Orgs / Teams / Conferencing"] } }, "/v2/organizations/{orgId}/teams/{teamId}/conferencing/{app}/oauth/callback": { @@ -4008,9 +3839,7 @@ "description": "" } }, - "tags": [ - "Orgs / Teams / Conferencing" - ] + "tags": ["Orgs / Teams / Conferencing"] } }, "/v2/organizations/{orgId}/teams/{teamId}/event-types": { @@ -4084,9 +3913,7 @@ } } }, - "tags": [ - "Orgs / Teams / Event Types" - ] + "tags": ["Orgs / Teams / Event Types"] }, "get": { "operationId": "OrganizationsEventTypesController_getTeamEventTypes", @@ -4152,10 +3979,7 @@ "in": "query", "description": "Sort event types by creation date. When not provided, no explicit ordering is applied.", "schema": { - "enum": [ - "asc", - "desc" - ], + "enum": ["asc", "desc"], "type": "string" } } @@ -4172,9 +3996,7 @@ } } }, - "tags": [ - "Orgs / Teams / Event Types" - ] + "tags": ["Orgs / Teams / Event Types"] } }, "/v2/organizations/{orgId}/teams/{teamId}/event-types/{eventTypeId}": { @@ -4238,9 +4060,7 @@ } } }, - "tags": [ - "Orgs / Teams / Event Types" - ] + "tags": ["Orgs / Teams / Event Types"] }, "patch": { "operationId": "OrganizationsEventTypesController_updateTeamEventType", @@ -4312,9 +4132,7 @@ } } }, - "tags": [ - "Orgs / Teams / Event Types" - ] + "tags": ["Orgs / Teams / Event Types"] }, "delete": { "operationId": "OrganizationsEventTypesController_deleteTeamEventType", @@ -4376,9 +4194,7 @@ } } }, - "tags": [ - "Orgs / Teams / Event Types" - ] + "tags": ["Orgs / Teams / Event Types"] } }, "/v2/organizations/{orgId}/teams/{teamId}/event-types/{eventTypeId}/create-phone-call": { @@ -4452,9 +4268,7 @@ } } }, - "tags": [ - "Orgs / Teams / Event Types" - ] + "tags": ["Orgs / Teams / Event Types"] } }, "/v2/organizations/{orgId}/teams/event-types": { @@ -4529,10 +4343,7 @@ "in": "query", "description": "Sort event types by creation date. When not provided, no explicit ordering is applied.", "schema": { - "enum": [ - "asc", - "desc" - ], + "enum": ["asc", "desc"], "type": "string" } } @@ -4549,9 +4360,7 @@ } } }, - "tags": [ - "Orgs / Teams / Event Types" - ] + "tags": ["Orgs / Teams / Event Types"] } }, "/v2/organizations/{orgId}/teams/{teamId}/event-types/{eventTypeId}/private-links": { @@ -4625,9 +4434,7 @@ } } }, - "tags": [ - "Orgs / Teams / Event Types / Private Links" - ] + "tags": ["Orgs / Teams / Event Types / Private Links"] }, "get": { "operationId": "OrganizationsEventTypesPrivateLinksController_getPrivateLinks", @@ -4689,9 +4496,7 @@ } } }, - "tags": [ - "Orgs / Teams / Event Types / Private Links" - ] + "tags": ["Orgs / Teams / Event Types / Private Links"] } }, "/v2/organizations/{orgId}/teams/{teamId}/event-types/{eventTypeId}/private-links/{linkId}": { @@ -4763,9 +4568,7 @@ } } }, - "tags": [ - "Orgs / Teams / Event Types / Private Links" - ] + "tags": ["Orgs / Teams / Event Types / Private Links"] }, "delete": { "operationId": "OrganizationsEventTypesPrivateLinksController_deletePrivateLink", @@ -4835,9 +4638,7 @@ } } }, - "tags": [ - "Orgs / Teams / Event Types / Private Links" - ] + "tags": ["Orgs / Teams / Event Types / Private Links"] } }, "/v2/organizations/{orgId}/teams/{teamId}/invite": { @@ -4901,9 +4702,7 @@ } } }, - "tags": [ - "Orgs / Teams / Invite" - ] + "tags": ["Orgs / Teams / Invite"] } }, "/v2/organizations/{orgId}/teams/{teamId}/memberships": { @@ -4992,9 +4791,7 @@ } } }, - "tags": [ - "Orgs / Teams / Memberships" - ] + "tags": ["Orgs / Teams / Memberships"] }, "post": { "operationId": "OrganizationsTeamsMembershipsController_createOrgTeamMembership", @@ -5066,9 +4863,7 @@ } } }, - "tags": [ - "Orgs / Teams / Memberships" - ] + "tags": ["Orgs / Teams / Memberships"] } }, "/v2/organizations/{orgId}/teams/{teamId}/memberships/{membershipId}": { @@ -5140,9 +4935,7 @@ } } }, - "tags": [ - "Orgs / Teams / Memberships" - ] + "tags": ["Orgs / Teams / Memberships"] }, "delete": { "operationId": "OrganizationsTeamsMembershipsController_deleteOrgTeamMembership", @@ -5212,9 +5005,7 @@ } } }, - "tags": [ - "Orgs / Teams / Memberships" - ] + "tags": ["Orgs / Teams / Memberships"] }, "patch": { "operationId": "OrganizationsTeamsMembershipsController_updateOrgTeamMembership", @@ -5294,9 +5085,7 @@ } } }, - "tags": [ - "Orgs / Teams / Memberships" - ] + "tags": ["Orgs / Teams / Memberships"] } }, "/v2/organizations/{orgId}/teams/{teamId}/roles": { @@ -5370,9 +5159,7 @@ } } }, - "tags": [ - "Orgs / Teams / Roles" - ] + "tags": ["Orgs / Teams / Roles"] }, "get": { "operationId": "OrganizationsTeamsRolesController_getAllRoles", @@ -5459,9 +5246,7 @@ } } }, - "tags": [ - "Orgs / Teams / Roles" - ] + "tags": ["Orgs / Teams / Roles"] } }, "/v2/organizations/{orgId}/teams/{teamId}/roles/{roleId}": { @@ -5533,9 +5318,7 @@ } } }, - "tags": [ - "Orgs / Teams / Roles" - ] + "tags": ["Orgs / Teams / Roles"] }, "patch": { "operationId": "OrganizationsTeamsRolesController_updateRole", @@ -5615,9 +5398,7 @@ } } }, - "tags": [ - "Orgs / Teams / Roles" - ] + "tags": ["Orgs / Teams / Roles"] }, "delete": { "operationId": "OrganizationsTeamsRolesController_deleteRole", @@ -5687,9 +5468,7 @@ } } }, - "tags": [ - "Orgs / Teams / Roles" - ] + "tags": ["Orgs / Teams / Roles"] } }, "/v2/organizations/{orgId}/teams/{teamId}/roles/{roleId}/permissions": { @@ -5771,9 +5550,7 @@ } } }, - "tags": [ - "Orgs / Teams / Roles / Permissions" - ] + "tags": ["Orgs / Teams / Roles / Permissions"] }, "get": { "operationId": "OrganizationsTeamsRolesPermissionsController_listPermissions", @@ -5843,9 +5620,7 @@ } } }, - "tags": [ - "Orgs / Teams / Roles / Permissions" - ] + "tags": ["Orgs / Teams / Roles / Permissions"] }, "put": { "operationId": "OrganizationsTeamsRolesPermissionsController_setPermissions", @@ -5925,9 +5700,7 @@ } } }, - "tags": [ - "Orgs / Teams / Roles / Permissions" - ] + "tags": ["Orgs / Teams / Roles / Permissions"] }, "delete": { "operationId": "OrganizationsTeamsRolesPermissionsController_removePermissions", @@ -6042,9 +5815,7 @@ "description": "" } }, - "tags": [ - "Orgs / Teams / Roles / Permissions" - ] + "tags": ["Orgs / Teams / Roles / Permissions"] } }, "/v2/organizations/{orgId}/teams/{teamId}/roles/{roleId}/permissions/{permission}": { @@ -6117,9 +5888,7 @@ "description": "" } }, - "tags": [ - "Orgs / Teams / Roles / Permissions" - ] + "tags": ["Orgs / Teams / Roles / Permissions"] } }, "/v2/organizations/{orgId}/teams/{teamId}/routing-forms": { @@ -6176,10 +5945,7 @@ "in": "query", "description": "Sort by creation time", "schema": { - "enum": [ - "asc", - "desc" - ], + "enum": ["asc", "desc"], "type": "string" } }, @@ -6189,10 +5955,7 @@ "in": "query", "description": "Sort by update time", "schema": { - "enum": [ - "asc", - "desc" - ], + "enum": ["asc", "desc"], "type": "string" } }, @@ -6258,9 +6021,7 @@ } } }, - "tags": [ - "Orgs / Teams / Routing forms" - ] + "tags": ["Orgs / Teams / Routing forms"] } }, "/v2/organizations/{orgId}/teams/{teamId}/routing-forms/{routingFormId}/responses": { @@ -6325,10 +6086,7 @@ "in": "query", "description": "Sort by creation time", "schema": { - "enum": [ - "asc", - "desc" - ], + "enum": ["asc", "desc"], "type": "string" } }, @@ -6338,10 +6096,7 @@ "in": "query", "description": "Sort by update time", "schema": { - "enum": [ - "asc", - "desc" - ], + "enum": ["asc", "desc"], "type": "string" } }, @@ -6407,9 +6162,7 @@ } } }, - "tags": [ - "Orgs / Teams / Routing forms / Responses" - ] + "tags": ["Orgs / Teams / Routing forms / Responses"] }, "post": { "operationId": "OrganizationsTeamsRoutingFormsResponsesController_createRoutingFormResponse", @@ -6495,10 +6248,7 @@ "description": "Format of slot times in response. Use 'range' to get start and end times.", "example": "range", "schema": { - "enum": [ - "range", - "time" - ], + "enum": ["range", "time"], "type": "string" } }, @@ -6535,9 +6285,7 @@ } } }, - "tags": [ - "Orgs / Teams / Routing forms / Responses" - ] + "tags": ["Orgs / Teams / Routing forms / Responses"] } }, "/v2/organizations/{orgId}/teams/{teamId}/routing-forms/{routingFormId}/responses/{responseId}": { @@ -6601,9 +6349,7 @@ } } }, - "tags": [ - "Orgs / Teams / Routing forms / Responses" - ] + "tags": ["Orgs / Teams / Routing forms / Responses"] } }, "/v2/organizations/{orgId}/teams/{teamId}/schedules": { @@ -6702,9 +6448,7 @@ } } }, - "tags": [ - "Orgs / Teams / Schedules" - ] + "tags": ["Orgs / Teams / Schedules"] } }, "/v2/organizations/{orgId}/teams/{teamId}/stripe/connect": { @@ -6765,9 +6509,7 @@ } } }, - "tags": [ - "Orgs / Teams / Stripe" - ] + "tags": ["Orgs / Teams / Stripe"] } }, "/v2/organizations/{orgId}/teams/{teamId}/stripe/check": { @@ -6796,9 +6538,7 @@ } } }, - "tags": [ - "Orgs / Teams / Stripe" - ] + "tags": ["Orgs / Teams / Stripe"] } }, "/v2/organizations/{orgId}/teams/{teamId}/stripe/save": { @@ -6843,9 +6583,7 @@ } } }, - "tags": [ - "Orgs / Teams / Stripe" - ] + "tags": ["Orgs / Teams / Stripe"] } }, "/v2/organizations/{orgId}/teams/{teamId}/users/{userId}/schedules": { @@ -6927,9 +6665,7 @@ } } }, - "tags": [ - "Orgs / Teams / Users / Schedules" - ] + "tags": ["Orgs / Teams / Users / Schedules"] } }, "/v2/organizations/{orgId}/teams/{teamId}/workflows": { @@ -7018,9 +6754,7 @@ } } }, - "tags": [ - "Orgs / Teams / Workflows" - ] + "tags": ["Orgs / Teams / Workflows"] }, "post": { "operationId": "OrganizationTeamWorkflowsController_createEventTypeWorkflow", @@ -7084,9 +6818,7 @@ } } }, - "tags": [ - "Orgs / Teams / Workflows" - ] + "tags": ["Orgs / Teams / Workflows"] } }, "/v2/organizations/{orgId}/teams/{teamId}/workflows/routing-form": { @@ -7175,9 +6907,7 @@ } } }, - "tags": [ - "Orgs / Teams / Workflows" - ] + "tags": ["Orgs / Teams / Workflows"] }, "post": { "operationId": "OrganizationTeamWorkflowsController_createFormWorkflow", @@ -7241,9 +6971,7 @@ } } }, - "tags": [ - "Orgs / Teams / Workflows" - ] + "tags": ["Orgs / Teams / Workflows"] } }, "/v2/organizations/{orgId}/teams/{teamId}/workflows/{workflowId}": { @@ -7307,9 +7035,7 @@ } } }, - "tags": [ - "Orgs / Teams / Workflows" - ] + "tags": ["Orgs / Teams / Workflows"] }, "patch": { "operationId": "OrganizationTeamWorkflowsController_updateWorkflow", @@ -7381,9 +7107,7 @@ } } }, - "tags": [ - "Orgs / Teams / Workflows" - ] + "tags": ["Orgs / Teams / Workflows"] }, "delete": { "operationId": "OrganizationTeamWorkflowsController_deleteWorkflow", @@ -7438,9 +7162,7 @@ "description": "" } }, - "tags": [ - "Orgs / Teams / Workflows" - ] + "tags": ["Orgs / Teams / Workflows"] } }, "/v2/organizations/{orgId}/teams/{teamId}/workflows/{workflowId}/routing-form": { @@ -7504,9 +7226,7 @@ } } }, - "tags": [ - "Orgs / Teams / Workflows" - ] + "tags": ["Orgs / Teams / Workflows"] }, "patch": { "operationId": "OrganizationTeamWorkflowsController_updateRoutingFormWorkflow", @@ -7578,9 +7298,7 @@ } } }, - "tags": [ - "Orgs / Teams / Workflows" - ] + "tags": ["Orgs / Teams / Workflows"] }, "delete": { "operationId": "OrganizationTeamWorkflowsController_deleteRoutingFormWorkflow", @@ -7635,9 +7353,7 @@ "description": "" } }, - "tags": [ - "Orgs / Teams / Workflows" - ] + "tags": ["Orgs / Teams / Workflows"] } }, "/v2/organizations/{orgId}/users": { @@ -7708,10 +7424,7 @@ "required": false, "in": "query", "description": "The email address or an array of email addresses to filter by", - "example": [ - "user1@example.com", - "user2@example.com" - ], + "example": ["user1@example.com", "user2@example.com"], "schema": { "type": "array", "items": { @@ -7740,11 +7453,7 @@ "example": "NONE", "schema": { "default": "AND", - "enum": [ - "OR", - "AND", - "NONE" - ], + "enum": ["OR", "AND", "NONE"], "type": "string" } }, @@ -7774,9 +7483,7 @@ } } }, - "tags": [ - "Orgs / Users" - ] + "tags": ["Orgs / Users"] }, "post": { "operationId": "OrganizationsUsersController_createOrganizationUser", @@ -7832,9 +7539,7 @@ } } }, - "tags": [ - "Orgs / Users" - ] + "tags": ["Orgs / Users"] } }, "/v2/organizations/{orgId}/users/{userId}": { @@ -7908,9 +7613,7 @@ } } }, - "tags": [ - "Orgs / Users" - ] + "tags": ["Orgs / Users"] }, "delete": { "operationId": "OrganizationsUsersController_deleteOrganizationUser", @@ -7972,9 +7675,7 @@ } } }, - "tags": [ - "Orgs / Users" - ] + "tags": ["Orgs / Users"] } }, "/v2/organizations/{orgId}/users/{userId}/bookings": { @@ -8035,13 +7736,7 @@ "type": "array", "items": { "type": "string", - "enum": [ - "upcoming", - "recurring", - "past", - "cancelled", - "unconfirmed" - ] + "enum": ["upcoming", "recurring", "past", "cancelled", "unconfirmed"] } } }, @@ -8182,10 +7877,7 @@ "description": "Sort results by their start time in ascending or descending order.", "example": "?sortStart=asc OR ?sortStart=desc", "schema": { - "enum": [ - "asc", - "desc" - ], + "enum": ["asc", "desc"], "type": "string" } }, @@ -8196,10 +7888,7 @@ "description": "Sort results by their end time in ascending or descending order.", "example": "?sortEnd=asc OR ?sortEnd=desc", "schema": { - "enum": [ - "asc", - "desc" - ], + "enum": ["asc", "desc"], "type": "string" } }, @@ -8210,10 +7899,7 @@ "description": "Sort results by their creation time (when booking was made) in ascending or descending order.", "example": "?sortCreated=asc OR ?sortCreated=desc", "schema": { - "enum": [ - "asc", - "desc" - ], + "enum": ["asc", "desc"], "type": "string" } }, @@ -8224,10 +7910,7 @@ "description": "Sort results by their updated time (for example when booking status changes) in ascending or descending order.", "example": "?sortUpdated=asc OR ?sortUpdated=desc", "schema": { - "enum": [ - "asc", - "desc" - ], + "enum": ["asc", "desc"], "type": "string" } }, @@ -8259,9 +7942,7 @@ "description": "" } }, - "tags": [ - "Orgs / Users / Bookings" - ] + "tags": ["Orgs / Users / Bookings"] } }, "/v2/organizations/{orgId}/users/{userId}/ooo": { @@ -8336,10 +8017,7 @@ "description": "Sort results by their start time in ascending or descending order.", "example": "?sortStart=asc OR ?sortStart=desc", "schema": { - "enum": [ - "asc", - "desc" - ], + "enum": ["asc", "desc"], "type": "string" } }, @@ -8350,10 +8028,7 @@ "description": "Sort results by their end time in ascending or descending order.", "example": "?sortEnd=asc OR ?sortEnd=desc", "schema": { - "enum": [ - "asc", - "desc" - ], + "enum": ["asc", "desc"], "type": "string" } } @@ -8363,9 +8038,7 @@ "description": "" } }, - "tags": [ - "Orgs / Users / OOO" - ] + "tags": ["Orgs / Users / OOO"] }, "post": { "operationId": "OrganizationsUsersOOOController_createOrganizationUserOOO", @@ -8422,9 +8095,7 @@ "description": "" } }, - "tags": [ - "Orgs / Users / OOO" - ] + "tags": ["Orgs / Users / OOO"] } }, "/v2/organizations/{orgId}/users/{userId}/ooo/{oooId}": { @@ -8491,9 +8162,7 @@ "description": "" } }, - "tags": [ - "Orgs / Users / OOO" - ] + "tags": ["Orgs / Users / OOO"] }, "delete": { "operationId": "OrganizationsUsersOOOController_deleteOrganizationUserOOO", @@ -8540,9 +8209,7 @@ "description": "" } }, - "tags": [ - "Orgs / Users / OOO" - ] + "tags": ["Orgs / Users / OOO"] } }, "/v2/organizations/{orgId}/ooo": { @@ -8617,10 +8284,7 @@ "description": "Sort results by their start time in ascending or descending order.", "example": "?sortStart=asc OR ?sortStart=desc", "schema": { - "enum": [ - "asc", - "desc" - ], + "enum": ["asc", "desc"], "type": "string" } }, @@ -8631,10 +8295,7 @@ "description": "Sort results by their end time in ascending or descending order.", "example": "?sortEnd=asc OR ?sortEnd=desc", "schema": { - "enum": [ - "asc", - "desc" - ], + "enum": ["asc", "desc"], "type": "string" } }, @@ -8654,9 +8315,7 @@ "description": "" } }, - "tags": [ - "Orgs / Users / OOO" - ] + "tags": ["Orgs / Users / OOO"] } }, "/v2/organizations/{orgId}/users/{userId}/schedules": { @@ -8722,9 +8381,7 @@ } } }, - "tags": [ - "Orgs / Users / Schedules" - ] + "tags": ["Orgs / Users / Schedules"] }, "get": { "operationId": "OrganizationsSchedulesController_getUserSchedules", @@ -8778,9 +8435,7 @@ } } }, - "tags": [ - "Orgs / Users / Schedules" - ] + "tags": ["Orgs / Users / Schedules"] } }, "/v2/organizations/{orgId}/users/{userId}/schedules/{scheduleId}": { @@ -8844,9 +8499,7 @@ } } }, - "tags": [ - "Orgs / Users / Schedules" - ] + "tags": ["Orgs / Users / Schedules"] }, "patch": { "operationId": "OrganizationsSchedulesController_updateUserSchedule", @@ -8918,9 +8571,7 @@ } } }, - "tags": [ - "Orgs / Users / Schedules" - ] + "tags": ["Orgs / Users / Schedules"] }, "delete": { "operationId": "OrganizationsSchedulesController_deleteUserSchedule", @@ -8982,9 +8633,7 @@ } } }, - "tags": [ - "Orgs / Users / Schedules" - ] + "tags": ["Orgs / Users / Schedules"] } }, "/v2/organizations/{orgId}/webhooks": { @@ -9065,9 +8714,7 @@ } } }, - "tags": [ - "Orgs / Webhooks" - ] + "tags": ["Orgs / Webhooks"] }, "post": { "operationId": "OrganizationsWebhooksController_createOrganizationWebhook", @@ -9131,9 +8778,7 @@ } } }, - "tags": [ - "Orgs / Webhooks" - ] + "tags": ["Orgs / Webhooks"] } }, "/v2/organizations/{orgId}/webhooks/{webhookId}": { @@ -9189,9 +8834,7 @@ } } }, - "tags": [ - "Orgs / Webhooks" - ] + "tags": ["Orgs / Webhooks"] }, "delete": { "operationId": "OrganizationsWebhooksController_deleteWebhook", @@ -9245,9 +8888,7 @@ } } }, - "tags": [ - "Orgs / Webhooks" - ] + "tags": ["Orgs / Webhooks"] }, "patch": { "operationId": "OrganizationsWebhooksController_updateOrgWebhook", @@ -9311,9 +8952,7 @@ } } }, - "tags": [ - "Orgs / Webhooks" - ] + "tags": ["Orgs / Webhooks"] } }, "/v2/api-keys/refresh": { @@ -9354,9 +8993,7 @@ } } }, - "tags": [ - "Api Keys" - ] + "tags": ["Api Keys"] } }, "/v2/bookings": { @@ -9436,9 +9073,7 @@ } } }, - "tags": [ - "Bookings" - ] + "tags": ["Bookings"] }, "get": { "operationId": "BookingsController_2024_08_13_getBookings", @@ -9465,13 +9100,7 @@ "type": "array", "items": { "type": "string", - "enum": [ - "upcoming", - "recurring", - "past", - "cancelled", - "unconfirmed" - ] + "enum": ["upcoming", "recurring", "past", "cancelled", "unconfirmed"] } } }, @@ -9612,10 +9241,7 @@ "description": "Sort results by their start time in ascending or descending order.", "example": "?sortStart=asc OR ?sortStart=desc", "schema": { - "enum": [ - "asc", - "desc" - ], + "enum": ["asc", "desc"], "type": "string" } }, @@ -9626,10 +9252,7 @@ "description": "Sort results by their end time in ascending or descending order.", "example": "?sortEnd=asc OR ?sortEnd=desc", "schema": { - "enum": [ - "asc", - "desc" - ], + "enum": ["asc", "desc"], "type": "string" } }, @@ -9640,10 +9263,7 @@ "description": "Sort results by their creation time (when booking was made) in ascending or descending order.", "example": "?sortCreated=asc OR ?sortCreated=desc", "schema": { - "enum": [ - "asc", - "desc" - ], + "enum": ["asc", "desc"], "type": "string" } }, @@ -9654,10 +9274,7 @@ "description": "Sort results by their updated time (for example when booking status changes) in ascending or descending order.", "example": "?sortUpdated=asc OR ?sortUpdated=desc", "schema": { - "enum": [ - "asc", - "desc" - ], + "enum": ["asc", "desc"], "type": "string" } }, @@ -9705,9 +9322,7 @@ } } }, - "tags": [ - "Bookings" - ] + "tags": ["Bookings"] } }, "/v2/bookings/{bookingUid}": { @@ -9774,9 +9389,7 @@ } } }, - "tags": [ - "Bookings" - ] + "tags": ["Bookings"] } }, "/v2/bookings/{bookingUid}/recordings": { @@ -9825,9 +9438,7 @@ } } }, - "tags": [ - "Bookings" - ] + "tags": ["Bookings"] } }, "/v2/bookings/{bookingUid}/transcripts": { @@ -9876,9 +9487,7 @@ } } }, - "tags": [ - "Bookings" - ] + "tags": ["Bookings"] } }, "/v2/bookings/{bookingUid}/reschedule": { @@ -9963,9 +9572,7 @@ } } }, - "tags": [ - "Bookings" - ] + "tags": ["Bookings"] } }, "/v2/bookings/{bookingUid}/cancel": { @@ -10050,9 +9657,7 @@ } } }, - "tags": [ - "Bookings" - ] + "tags": ["Bookings"] } }, "/v2/bookings/{bookingUid}/mark-absent": { @@ -10111,9 +9716,7 @@ } } }, - "tags": [ - "Bookings" - ] + "tags": ["Bookings"] } }, "/v2/bookings/{bookingUid}/reassign": { @@ -10162,9 +9765,7 @@ } } }, - "tags": [ - "Bookings" - ] + "tags": ["Bookings"] } }, "/v2/bookings/{bookingUid}/reassign/{userId}": { @@ -10231,9 +9832,7 @@ } } }, - "tags": [ - "Bookings" - ] + "tags": ["Bookings"] } }, "/v2/bookings/{bookingUid}/confirm": { @@ -10282,9 +9881,7 @@ } } }, - "tags": [ - "Bookings" - ] + "tags": ["Bookings"] } }, "/v2/bookings/{bookingUid}/decline": { @@ -10343,9 +9940,7 @@ } } }, - "tags": [ - "Bookings" - ] + "tags": ["Bookings"] } }, "/v2/bookings/{bookingUid}/calendar-links": { @@ -10394,9 +9989,7 @@ } } }, - "tags": [ - "Bookings" - ] + "tags": ["Bookings"] } }, "/v2/bookings/{bookingUid}/references": { @@ -10463,9 +10056,7 @@ } } }, - "tags": [ - "Bookings" - ] + "tags": ["Bookings"] } }, "/v2/bookings/{bookingUid}/conferencing-sessions": { @@ -10514,9 +10105,7 @@ } } }, - "tags": [ - "Bookings" - ] + "tags": ["Bookings"] } }, "/v2/bookings/{bookingUid}/location": { @@ -10574,9 +10163,7 @@ } } }, - "tags": [ - "Bookings" - ] + "tags": ["Bookings"] } }, "/v2/bookings/{bookingUid}/guests": { @@ -10634,9 +10221,7 @@ } } }, - "tags": [ - "Bookings / Guests" - ] + "tags": ["Bookings / Guests"] } }, "/v2/calendars/{calendar}/event/{eventUid}": { @@ -10650,9 +10235,7 @@ "required": true, "in": "path", "schema": { - "enum": [ - "google" - ], + "enum": ["google"], "type": "string" } }, @@ -10687,9 +10270,7 @@ } } }, - "tags": [ - "Cal Unified Calendars" - ] + "tags": ["Cal Unified Calendars"] } }, "/v2/calendars/{calendar}/events/{eventUid}": { @@ -10703,9 +10284,7 @@ "required": true, "in": "path", "schema": { - "enum": [ - "google" - ], + "enum": ["google"], "type": "string" } }, @@ -10750,9 +10329,7 @@ } } }, - "tags": [ - "Cal Unified Calendars" - ] + "tags": ["Cal Unified Calendars"] } }, "/v2/calendars/ics-feed/save": { @@ -10792,9 +10369,7 @@ } } }, - "tags": [ - "Calendars" - ] + "tags": ["Calendars"] } }, "/v2/calendars/ics-feed/check": { @@ -10824,9 +10399,7 @@ } } }, - "tags": [ - "Calendars" - ] + "tags": ["Calendars"] } }, "/v2/calendars/busy-times": { @@ -10914,9 +10487,7 @@ } } }, - "tags": [ - "Calendars" - ] + "tags": ["Calendars"] } }, "/v2/calendars": { @@ -10946,9 +10517,7 @@ } } }, - "tags": [ - "Calendars" - ] + "tags": ["Calendars"] } }, "/v2/calendars/{calendar}/connect": { @@ -10970,10 +10539,7 @@ "required": true, "in": "path", "schema": { - "enum": [ - "office365", - "google" - ], + "enum": ["office365", "google"], "type": "string" } }, @@ -11007,9 +10573,7 @@ } } }, - "tags": [ - "Calendars" - ] + "tags": ["Calendars"] } }, "/v2/calendars/{calendar}/save": { @@ -11038,10 +10602,7 @@ "required": true, "in": "path", "schema": { - "enum": [ - "office365", - "google" - ], + "enum": ["office365", "google"], "type": "string" } } @@ -11051,9 +10612,7 @@ "description": "" } }, - "tags": [ - "Calendars" - ] + "tags": ["Calendars"] } }, "/v2/calendars/{calendar}/credentials": { @@ -11066,9 +10625,7 @@ "required": true, "in": "path", "schema": { - "enum": [ - "apple" - ], + "enum": ["apple"], "type": "string" } }, @@ -11097,9 +10654,7 @@ "description": "" } }, - "tags": [ - "Calendars" - ] + "tags": ["Calendars"] } }, "/v2/calendars/{calendar}/check": { @@ -11112,11 +10667,7 @@ "required": true, "in": "path", "schema": { - "enum": [ - "apple", - "google", - "office365" - ], + "enum": ["apple", "google", "office365"], "type": "string" } }, @@ -11142,9 +10693,7 @@ } } }, - "tags": [ - "Calendars" - ] + "tags": ["Calendars"] } }, "/v2/calendars/{calendar}/disconnect": { @@ -11157,11 +10706,7 @@ "required": true, "in": "path", "schema": { - "enum": [ - "apple", - "google", - "office365" - ], + "enum": ["apple", "google", "office365"], "type": "string" } }, @@ -11197,9 +10742,7 @@ } } }, - "tags": [ - "Calendars" - ] + "tags": ["Calendars"] } }, "/v2/conferencing/{app}/connect": { @@ -11213,9 +10756,7 @@ "in": "path", "description": "Conferencing application type", "schema": { - "enum": [ - "google-meet" - ], + "enum": ["google-meet"], "type": "string" } }, @@ -11241,9 +10782,7 @@ } } }, - "tags": [ - "Conferencing" - ] + "tags": ["Conferencing"] } }, "/v2/conferencing/{app}/oauth/auth-url": { @@ -11266,10 +10805,7 @@ "in": "path", "description": "Conferencing application type", "schema": { - "enum": [ - "zoom", - "msteams" - ], + "enum": ["zoom", "msteams"], "type": "string" } }, @@ -11302,9 +10838,7 @@ } } }, - "tags": [ - "Conferencing" - ] + "tags": ["Conferencing"] } }, "/v2/conferencing/{app}/oauth/callback": { @@ -11326,10 +10860,7 @@ "in": "path", "description": "Conferencing application type", "schema": { - "enum": [ - "zoom", - "msteams" - ], + "enum": ["zoom", "msteams"], "type": "string" } }, @@ -11347,9 +10878,7 @@ "description": "" } }, - "tags": [ - "Conferencing" - ] + "tags": ["Conferencing"] } }, "/v2/conferencing": { @@ -11379,9 +10908,7 @@ } } }, - "tags": [ - "Conferencing" - ] + "tags": ["Conferencing"] } }, "/v2/conferencing/{app}/default": { @@ -11395,12 +10922,7 @@ "in": "path", "description": "Conferencing application type", "schema": { - "enum": [ - "google-meet", - "zoom", - "msteams", - "daily-video" - ], + "enum": ["google-meet", "zoom", "msteams", "daily-video"], "type": "string" } }, @@ -11426,9 +10948,7 @@ } } }, - "tags": [ - "Conferencing" - ] + "tags": ["Conferencing"] } }, "/v2/conferencing/default": { @@ -11458,9 +10978,7 @@ } } }, - "tags": [ - "Conferencing" - ] + "tags": ["Conferencing"] } }, "/v2/conferencing/{app}/disconnect": { @@ -11474,11 +10992,7 @@ "in": "path", "description": "Conferencing application type", "schema": { - "enum": [ - "google-meet", - "zoom", - "msteams" - ], + "enum": ["google-meet", "zoom", "msteams"], "type": "string" } }, @@ -11504,9 +11018,7 @@ } } }, - "tags": [ - "Conferencing" - ] + "tags": ["Conferencing"] } }, "/v2/oauth-clients/{clientId}/users": { @@ -11578,9 +11090,7 @@ } } }, - "tags": [ - "Deprecated: Platform / Managed Users" - ] + "tags": ["Deprecated: Platform / Managed Users"] }, "post": { "operationId": "OAuthClientUsersController_createUser", @@ -11627,9 +11137,7 @@ } } }, - "tags": [ - "Deprecated: Platform / Managed Users" - ] + "tags": ["Deprecated: Platform / Managed Users"] } }, "/v2/oauth-clients/{clientId}/users/{userId}": { @@ -11676,9 +11184,7 @@ } } }, - "tags": [ - "Deprecated: Platform / Managed Users" - ] + "tags": ["Deprecated: Platform / Managed Users"] }, "patch": { "operationId": "OAuthClientUsersController_updateUser", @@ -11733,9 +11239,7 @@ } } }, - "tags": [ - "Deprecated: Platform / Managed Users" - ] + "tags": ["Deprecated: Platform / Managed Users"] }, "delete": { "operationId": "OAuthClientUsersController_deleteUser", @@ -11780,9 +11284,7 @@ } } }, - "tags": [ - "Deprecated: Platform / Managed Users" - ] + "tags": ["Deprecated: Platform / Managed Users"] } }, "/v2/oauth-clients/{clientId}/users/{userId}/force-refresh": { @@ -11829,9 +11331,7 @@ } } }, - "tags": [ - "Deprecated: Platform / Managed Users" - ] + "tags": ["Deprecated: Platform / Managed Users"] } }, "/v2/oauth/{clientId}/refresh": { @@ -11880,9 +11380,7 @@ } } }, - "tags": [ - "Deprecated: Platform / Managed Users" - ] + "tags": ["Deprecated: Platform / Managed Users"] } }, "/v2/oauth-clients/{clientId}/webhooks": { @@ -11931,9 +11429,7 @@ } } }, - "tags": [ - "Deprecated: Platform / Webhooks" - ] + "tags": ["Deprecated: Platform / Webhooks"] }, "get": { "operationId": "OAuthClientWebhooksController_getOAuthClientWebhooks", @@ -11995,9 +11491,7 @@ } } }, - "tags": [ - "Deprecated: Platform / Webhooks" - ] + "tags": ["Deprecated: Platform / Webhooks"] }, "delete": { "operationId": "OAuthClientWebhooksController_deleteAllOAuthClientWebhooks", @@ -12034,9 +11528,7 @@ } } }, - "tags": [ - "Deprecated: Platform / Webhooks" - ] + "tags": ["Deprecated: Platform / Webhooks"] } }, "/v2/oauth-clients/{clientId}/webhooks/{webhookId}": { @@ -12085,9 +11577,7 @@ } } }, - "tags": [ - "Deprecated: Platform / Webhooks" - ] + "tags": ["Deprecated: Platform / Webhooks"] }, "get": { "operationId": "OAuthClientWebhooksController_getOAuthClientWebhook", @@ -12116,9 +11606,7 @@ } } }, - "tags": [ - "Deprecated: Platform / Webhooks" - ] + "tags": ["Deprecated: Platform / Webhooks"] }, "delete": { "operationId": "OAuthClientWebhooksController_deleteOAuthClientWebhook", @@ -12147,9 +11635,7 @@ } } }, - "tags": [ - "Deprecated: Platform / Webhooks" - ] + "tags": ["Deprecated: Platform / Webhooks"] } }, "/v2/oauth-clients": { @@ -12190,9 +11676,7 @@ } } }, - "tags": [ - "Deprecated: Platform OAuth Clients" - ] + "tags": ["Deprecated: Platform OAuth Clients"] }, "get": { "operationId": "OAuthClientsController_getOAuthClients", @@ -12221,9 +11705,7 @@ } } }, - "tags": [ - "Deprecated: Platform OAuth Clients" - ] + "tags": ["Deprecated: Platform OAuth Clients"] } }, "/v2/oauth-clients/{clientId}": { @@ -12262,9 +11744,7 @@ } } }, - "tags": [ - "Deprecated: Platform OAuth Clients" - ] + "tags": ["Deprecated: Platform OAuth Clients"] }, "patch": { "operationId": "OAuthClientsController_updateOAuthClient", @@ -12311,9 +11791,7 @@ } } }, - "tags": [ - "Deprecated: Platform OAuth Clients" - ] + "tags": ["Deprecated: Platform OAuth Clients"] }, "delete": { "operationId": "OAuthClientsController_deleteOAuthClient", @@ -12350,9 +11828,7 @@ } } }, - "tags": [ - "Deprecated: Platform OAuth Clients" - ] + "tags": ["Deprecated: Platform OAuth Clients"] } }, "/v2/destination-calendars": { @@ -12392,9 +11868,7 @@ } } }, - "tags": [ - "Destination Calendars" - ] + "tags": ["Destination Calendars"] } }, "/v2/event-types": { @@ -12445,9 +11919,7 @@ } } }, - "tags": [ - "Event Types" - ] + "tags": ["Event Types"] }, "get": { "operationId": "EventTypesController_2024_06_14_getEventTypes", @@ -12515,10 +11987,7 @@ "in": "query", "description": "Sort event types by creation date. When not provided, no explicit ordering is applied.", "schema": { - "enum": [ - "asc", - "desc" - ], + "enum": ["asc", "desc"], "type": "string" } }, @@ -12562,9 +12031,7 @@ } } }, - "tags": [ - "Event Types" - ] + "tags": ["Event Types"] } }, "/v2/event-types/{eventTypeId}": { @@ -12613,9 +12080,7 @@ } } }, - "tags": [ - "Event Types" - ] + "tags": ["Event Types"] }, "patch": { "operationId": "EventTypesController_2024_06_14_updateEventType", @@ -12672,9 +12137,7 @@ } } }, - "tags": [ - "Event Types" - ] + "tags": ["Event Types"] }, "delete": { "operationId": "EventTypesController_2024_06_14_deleteEventType", @@ -12721,9 +12184,7 @@ } } }, - "tags": [ - "Event Types" - ] + "tags": ["Event Types"] } }, "/v2/event-types/{eventTypeId}/webhooks": { @@ -12771,9 +12232,7 @@ } } }, - "tags": [ - "Event Types / Webhooks" - ] + "tags": ["Event Types / Webhooks"] }, "get": { "operationId": "EventTypeWebhooksController_getEventTypeWebhooks", @@ -12834,9 +12293,7 @@ } } }, - "tags": [ - "Event Types / Webhooks" - ] + "tags": ["Event Types / Webhooks"] }, "delete": { "operationId": "EventTypeWebhooksController_deleteAllEventTypeWebhooks", @@ -12872,9 +12329,7 @@ } } }, - "tags": [ - "Event Types / Webhooks" - ] + "tags": ["Event Types / Webhooks"] } }, "/v2/event-types/{eventTypeId}/webhooks/{webhookId}": { @@ -12922,9 +12377,7 @@ } } }, - "tags": [ - "Event Types / Webhooks" - ] + "tags": ["Event Types / Webhooks"] }, "get": { "operationId": "EventTypeWebhooksController_getEventTypeWebhook", @@ -12952,9 +12405,7 @@ } } }, - "tags": [ - "Event Types / Webhooks" - ] + "tags": ["Event Types / Webhooks"] }, "delete": { "operationId": "EventTypeWebhooksController_deleteEventTypeWebhook", @@ -12982,9 +12433,7 @@ } } }, - "tags": [ - "Event Types / Webhooks" - ] + "tags": ["Event Types / Webhooks"] } }, "/v2/event-types/{eventTypeId}/private-links": { @@ -13032,9 +12481,7 @@ } } }, - "tags": [ - "Event Types Private Links" - ] + "tags": ["Event Types Private Links"] }, "get": { "operationId": "EventTypesPrivateLinksController_getPrivateLinks", @@ -13070,9 +12517,7 @@ } } }, - "tags": [ - "Event Types Private Links" - ] + "tags": ["Event Types Private Links"] } }, "/v2/event-types/{eventTypeId}/private-links/{linkId}": { @@ -13128,9 +12573,7 @@ } } }, - "tags": [ - "Event Types Private Links" - ] + "tags": ["Event Types Private Links"] }, "delete": { "operationId": "EventTypesPrivateLinksController_deletePrivateLink", @@ -13174,9 +12617,7 @@ } } }, - "tags": [ - "Event Types Private Links" - ] + "tags": ["Event Types Private Links"] } }, "/v2/organizations/{orgId}/organizations": { @@ -13234,9 +12675,7 @@ } } }, - "tags": [ - "Managed Orgs" - ] + "tags": ["Managed Orgs"] }, "get": { "operationId": "OrganizationsOrganizationsController_getOrganizations", @@ -13337,9 +12776,7 @@ } } }, - "tags": [ - "Managed Orgs" - ] + "tags": ["Managed Orgs"] } }, "/v2/organizations/{orgId}/organizations/{managedOrganizationId}": { @@ -13387,9 +12824,7 @@ } } }, - "tags": [ - "Managed Orgs" - ] + "tags": ["Managed Orgs"] }, "patch": { "operationId": "OrganizationsOrganizationsController_updateOrganization", @@ -13453,9 +12888,7 @@ } } }, - "tags": [ - "Managed Orgs" - ] + "tags": ["Managed Orgs"] }, "delete": { "operationId": "OrganizationsOrganizationsController_deleteOrganization", @@ -13501,9 +12934,7 @@ } } }, - "tags": [ - "Managed Orgs" - ] + "tags": ["Managed Orgs"] } }, "/v2/me": { @@ -13533,9 +12964,7 @@ } } }, - "tags": [ - "Me" - ] + "tags": ["Me"] }, "patch": { "operationId": "MeController_updateMe", @@ -13574,9 +13003,7 @@ } } }, - "tags": [ - "Me" - ] + "tags": ["Me"] } }, "/v2/organizations/{orgId}/teams/{teamId}/verified-resources/emails/verification-code/request": { @@ -13617,9 +13044,7 @@ } } }, - "tags": [ - "Organization Team Verified Resources" - ] + "tags": ["Organization Team Verified Resources"] } }, "/v2/organizations/{orgId}/teams/{teamId}/verified-resources/phones/verification-code/request": { @@ -13660,9 +13085,7 @@ } } }, - "tags": [ - "Organization Team Verified Resources" - ] + "tags": ["Organization Team Verified Resources"] } }, "/v2/organizations/{orgId}/teams/{teamId}/verified-resources/emails/verification-code/verify": { @@ -13711,9 +13134,7 @@ } } }, - "tags": [ - "Organization Team Verified Resources" - ] + "tags": ["Organization Team Verified Resources"] } }, "/v2/organizations/{orgId}/teams/{teamId}/verified-resources/phones/verification-code/verify": { @@ -13762,9 +13183,7 @@ } } }, - "tags": [ - "Organization Team Verified Resources" - ] + "tags": ["Organization Team Verified Resources"] } }, "/v2/organizations/{orgId}/teams/{teamId}/verified-resources/emails": { @@ -13827,9 +13246,7 @@ } } }, - "tags": [ - "Organization Team Verified Resources" - ] + "tags": ["Organization Team Verified Resources"] } }, "/v2/organizations/{orgId}/teams/{teamId}/verified-resources/phones": { @@ -13892,9 +13309,7 @@ } } }, - "tags": [ - "Organization Team Verified Resources" - ] + "tags": ["Organization Team Verified Resources"] } }, "/v2/organizations/{orgId}/teams/{teamId}/verified-resources/emails/{id}": { @@ -13940,9 +13355,7 @@ } } }, - "tags": [ - "Organization Team Verified Resources" - ] + "tags": ["Organization Team Verified Resources"] } }, "/v2/organizations/{orgId}/teams/{teamId}/verified-resources/phones/{id}": { @@ -13988,9 +13401,7 @@ } } }, - "tags": [ - "Organization Team Verified Resources" - ] + "tags": ["Organization Team Verified Resources"] } }, "/v2/routing-forms/{routingFormId}/calculate-slots": { @@ -14055,10 +13466,7 @@ "description": "Format of slot times in response. Use 'range' to get start and end times.", "example": "range", "schema": { - "enum": [ - "range", - "time" - ], + "enum": ["range", "time"], "type": "string" } }, @@ -14093,9 +13501,7 @@ } } }, - "tags": [ - "Routing forms" - ] + "tags": ["Routing forms"] } }, "/v2/schedules": { @@ -14146,9 +13552,7 @@ } } }, - "tags": [ - "Schedules" - ] + "tags": ["Schedules"] }, "get": { "operationId": "SchedulesController_2024_06_11_getSchedules", @@ -14187,9 +13591,7 @@ } } }, - "tags": [ - "Schedules" - ] + "tags": ["Schedules"] } }, "/v2/schedules/default": { @@ -14230,9 +13632,7 @@ } } }, - "tags": [ - "Schedules" - ] + "tags": ["Schedules"] } }, "/v2/schedules/{scheduleId}": { @@ -14281,9 +13681,7 @@ } } }, - "tags": [ - "Schedules" - ] + "tags": ["Schedules"] }, "patch": { "operationId": "SchedulesController_2024_06_11_updateSchedule", @@ -14340,9 +13738,7 @@ } } }, - "tags": [ - "Schedules" - ] + "tags": ["Schedules"] }, "delete": { "operationId": "SchedulesController_2024_06_11_deleteSchedule", @@ -14389,9 +13785,7 @@ } } }, - "tags": [ - "Schedules" - ] + "tags": ["Schedules"] } }, "/v2/selected-calendars": { @@ -14431,9 +13825,7 @@ } } }, - "tags": [ - "Selected Calendars" - ] + "tags": ["Selected Calendars"] }, "delete": { "operationId": "SelectedCalendarsController_deleteSelectedCalendar", @@ -14493,9 +13885,7 @@ } } }, - "tags": [ - "Selected Calendars" - ] + "tags": ["Selected Calendars"] } }, "/v2/slots": { @@ -14698,9 +14088,7 @@ } } }, - "tags": [ - "Slots" - ] + "tags": ["Slots"] } }, "/v2/slots/reservations": { @@ -14760,9 +14148,7 @@ } } }, - "tags": [ - "Slots" - ] + "tags": ["Slots"] } }, "/v2/slots/reservations/{uid}": { @@ -14802,9 +14188,7 @@ } } }, - "tags": [ - "Slots" - ] + "tags": ["Slots"] }, "patch": { "operationId": "SlotsController_2024_09_04_updateReservedSlot", @@ -14852,9 +14236,7 @@ } } }, - "tags": [ - "Slots" - ] + "tags": ["Slots"] }, "delete": { "operationId": "SlotsController_2024_09_04_deleteReservedSlot", @@ -14895,9 +14277,7 @@ } } }, - "tags": [ - "Slots" - ] + "tags": ["Slots"] } }, "/v2/stripe/connect": { @@ -14927,9 +14307,7 @@ } } }, - "tags": [ - "Stripe" - ] + "tags": ["Stripe"] } }, "/v2/stripe/save": { @@ -14966,9 +14344,7 @@ } } }, - "tags": [ - "Stripe" - ] + "tags": ["Stripe"] } }, "/v2/stripe/check": { @@ -14998,9 +14374,7 @@ } } }, - "tags": [ - "Stripe" - ] + "tags": ["Stripe"] } }, "/v2/teams": { @@ -15040,9 +14414,7 @@ } } }, - "tags": [ - "Teams" - ] + "tags": ["Teams"] }, "get": { "operationId": "TeamsController_getTeams", @@ -15070,9 +14442,7 @@ } } }, - "tags": [ - "Teams" - ] + "tags": ["Teams"] } }, "/v2/teams/{teamId}": { @@ -15110,9 +14480,7 @@ } } }, - "tags": [ - "Teams" - ] + "tags": ["Teams"] }, "patch": { "operationId": "TeamsController_updateTeam", @@ -15158,9 +14526,7 @@ } } }, - "tags": [ - "Teams" - ] + "tags": ["Teams"] }, "delete": { "operationId": "TeamsController_deleteTeam", @@ -15196,9 +14562,7 @@ } } }, - "tags": [ - "Teams" - ] + "tags": ["Teams"] } }, "/v2/teams/{teamId}/bookings": { @@ -15225,13 +14589,7 @@ "type": "array", "items": { "type": "string", - "enum": [ - "upcoming", - "recurring", - "past", - "cancelled", - "unconfirmed" - ] + "enum": ["upcoming", "recurring", "past", "cancelled", "unconfirmed"] } } }, @@ -15312,10 +14670,7 @@ "description": "Sort results by their start time in ascending or descending order.", "example": "?sortStart=asc OR ?sortStart=desc", "schema": { - "enum": [ - "asc", - "desc" - ], + "enum": ["asc", "desc"], "type": "string" } }, @@ -15326,10 +14681,7 @@ "description": "Sort results by their end time in ascending or descending order.", "example": "?sortEnd=asc OR ?sortEnd=desc", "schema": { - "enum": [ - "asc", - "desc" - ], + "enum": ["asc", "desc"], "type": "string" } }, @@ -15340,10 +14692,7 @@ "description": "Sort results by their creation time (when booking was made) in ascending or descending order.", "example": "?sortCreated=asc OR ?sortCreated=desc", "schema": { - "enum": [ - "asc", - "desc" - ], + "enum": ["asc", "desc"], "type": "string" } }, @@ -15391,9 +14740,7 @@ } } }, - "tags": [ - "Teams / Bookings" - ] + "tags": ["Teams / Bookings"] } }, "/v2/teams/{teamId}/event-types": { @@ -15441,9 +14788,7 @@ } } }, - "tags": [ - "Teams / Event Types" - ] + "tags": ["Teams / Event Types"] }, "get": { "operationId": "TeamsEventTypesController_getTeamEventTypes", @@ -15482,10 +14827,7 @@ "in": "query", "description": "Sort event types by creation date. When not provided, no explicit ordering is applied.", "schema": { - "enum": [ - "asc", - "desc" - ], + "enum": ["asc", "desc"], "type": "string" } } @@ -15502,9 +14844,7 @@ } } }, - "tags": [ - "Teams / Event Types" - ] + "tags": ["Teams / Event Types"] } }, "/v2/teams/{teamId}/event-types/{eventTypeId}": { @@ -15550,9 +14890,7 @@ } } }, - "tags": [ - "Teams / Event Types" - ] + "tags": ["Teams / Event Types"] }, "patch": { "operationId": "TeamsEventTypesController_updateTeamEventType", @@ -15606,9 +14944,7 @@ } } }, - "tags": [ - "Teams / Event Types" - ] + "tags": ["Teams / Event Types"] }, "delete": { "operationId": "TeamsEventTypesController_deleteTeamEventType", @@ -15652,9 +14988,7 @@ } } }, - "tags": [ - "Teams / Event Types" - ] + "tags": ["Teams / Event Types"] } }, "/v2/teams/{teamId}/event-types/{eventTypeId}/create-phone-call": { @@ -15710,9 +15044,7 @@ } } }, - "tags": [ - "Teams / Event Types" - ] + "tags": ["Teams / Event Types"] } }, "/v2/teams/{teamId}/event-types/{eventTypeId}/webhooks": { @@ -15760,9 +15092,7 @@ } } }, - "tags": [ - "Teams / Event Types / Webhooks" - ] + "tags": ["Teams / Event Types / Webhooks"] }, "get": { "operationId": "TeamsEventTypesWebhooksController_getTeamEventTypeWebhooks", @@ -15823,9 +15153,7 @@ } } }, - "tags": [ - "Teams / Event Types / Webhooks" - ] + "tags": ["Teams / Event Types / Webhooks"] }, "delete": { "operationId": "TeamsEventTypesWebhooksController_deleteAllTeamEventTypeWebhooks", @@ -15861,9 +15189,7 @@ } } }, - "tags": [ - "Teams / Event Types / Webhooks" - ] + "tags": ["Teams / Event Types / Webhooks"] } }, "/v2/teams/{teamId}/event-types/{eventTypeId}/webhooks/{webhookId}": { @@ -15911,9 +15237,7 @@ } } }, - "tags": [ - "Teams / Event Types / Webhooks" - ] + "tags": ["Teams / Event Types / Webhooks"] }, "get": { "operationId": "TeamsEventTypesWebhooksController_getTeamEventTypeWebhook", @@ -15941,9 +15265,7 @@ } } }, - "tags": [ - "Teams / Event Types / Webhooks" - ] + "tags": ["Teams / Event Types / Webhooks"] }, "delete": { "operationId": "TeamsEventTypesWebhooksController_deleteTeamEventTypeWebhook", @@ -15971,9 +15293,7 @@ } } }, - "tags": [ - "Teams / Event Types / Webhooks" - ] + "tags": ["Teams / Event Types / Webhooks"] } }, "/v2/teams/{teamId}/invite": { @@ -16011,9 +15331,7 @@ } } }, - "tags": [ - "Teams / Invite" - ] + "tags": ["Teams / Invite"] } }, "/v2/teams/{teamId}/memberships": { @@ -16061,9 +15379,7 @@ } } }, - "tags": [ - "Teams / Memberships" - ] + "tags": ["Teams / Memberships"] }, "get": { "operationId": "TeamsMembershipsController_getTeamMemberships", @@ -16138,9 +15454,7 @@ } } }, - "tags": [ - "Teams / Memberships" - ] + "tags": ["Teams / Memberships"] } }, "/v2/teams/{teamId}/memberships/{membershipId}": { @@ -16186,9 +15500,7 @@ } } }, - "tags": [ - "Teams / Memberships" - ] + "tags": ["Teams / Memberships"] }, "patch": { "operationId": "TeamsMembershipsController_updateTeamMembership", @@ -16242,9 +15554,7 @@ } } }, - "tags": [ - "Teams / Memberships" - ] + "tags": ["Teams / Memberships"] }, "delete": { "operationId": "TeamsMembershipsController_deleteTeamMembership", @@ -16288,9 +15598,7 @@ } } }, - "tags": [ - "Teams / Memberships" - ] + "tags": ["Teams / Memberships"] } }, "/v2/teams/{teamId}/schedules": { @@ -16353,9 +15661,7 @@ } } }, - "tags": [ - "Teams / Schedules" - ] + "tags": ["Teams / Schedules"] } }, "/v2/teams/{teamId}/verified-resources/emails/verification-code/request": { @@ -16396,9 +15702,7 @@ } } }, - "tags": [ - "Teams Verified Resources" - ] + "tags": ["Teams Verified Resources"] } }, "/v2/teams/{teamId}/verified-resources/phones/verification-code/request": { @@ -16439,9 +15743,7 @@ } } }, - "tags": [ - "Teams Verified Resources" - ] + "tags": ["Teams Verified Resources"] } }, "/v2/teams/{teamId}/verified-resources/emails/verification-code/verify": { @@ -16490,9 +15792,7 @@ } } }, - "tags": [ - "Teams Verified Resources" - ] + "tags": ["Teams Verified Resources"] } }, "/v2/teams/{teamId}/verified-resources/phones/verification-code/verify": { @@ -16541,9 +15841,7 @@ } } }, - "tags": [ - "Teams Verified Resources" - ] + "tags": ["Teams Verified Resources"] } }, "/v2/teams/{teamId}/verified-resources/emails": { @@ -16606,9 +15904,7 @@ } } }, - "tags": [ - "Teams Verified Resources" - ] + "tags": ["Teams Verified Resources"] } }, "/v2/teams/{teamId}/verified-resources/phones": { @@ -16671,9 +15967,7 @@ } } }, - "tags": [ - "Teams Verified Resources" - ] + "tags": ["Teams Verified Resources"] } }, "/v2/teams/{teamId}/verified-resources/emails/{id}": { @@ -16719,9 +16013,7 @@ } } }, - "tags": [ - "Teams Verified Resources" - ] + "tags": ["Teams Verified Resources"] } }, "/v2/teams/{teamId}/verified-resources/phones/{id}": { @@ -16767,9 +16059,7 @@ } } }, - "tags": [ - "Teams Verified Resources" - ] + "tags": ["Teams Verified Resources"] } }, "/v2/verified-resources/emails/verification-code/request": { @@ -16810,9 +16100,7 @@ } } }, - "tags": [ - "Verified Resources" - ] + "tags": ["Verified Resources"] } }, "/v2/verified-resources/phones/verification-code/request": { @@ -16853,9 +16141,7 @@ } } }, - "tags": [ - "Verified Resources" - ] + "tags": ["Verified Resources"] } }, "/v2/verified-resources/emails/verification-code/verify": { @@ -16896,9 +16182,7 @@ } } }, - "tags": [ - "Verified Resources" - ] + "tags": ["Verified Resources"] } }, "/v2/verified-resources/phones/verification-code/verify": { @@ -16939,9 +16223,7 @@ } } }, - "tags": [ - "Verified Resources" - ] + "tags": ["Verified Resources"] } }, "/v2/verified-resources/emails": { @@ -16996,9 +16278,7 @@ } } }, - "tags": [ - "Verified Resources" - ] + "tags": ["Verified Resources"] } }, "/v2/verified-resources/phones": { @@ -17053,9 +16333,7 @@ } } }, - "tags": [ - "Verified Resources" - ] + "tags": ["Verified Resources"] } }, "/v2/verified-resources/emails/{id}": { @@ -17093,9 +16371,7 @@ } } }, - "tags": [ - "Verified Resources" - ] + "tags": ["Verified Resources"] } }, "/v2/verified-resources/phones/{id}": { @@ -17133,9 +16409,7 @@ } } }, - "tags": [ - "Verified Resources" - ] + "tags": ["Verified Resources"] } }, "/v2/webhooks": { @@ -17175,9 +16449,7 @@ } } }, - "tags": [ - "Webhooks" - ] + "tags": ["Webhooks"] }, "get": { "operationId": "WebhooksController_getWebhooks", @@ -17231,9 +16503,7 @@ } } }, - "tags": [ - "Webhooks" - ] + "tags": ["Webhooks"] } }, "/v2/webhooks/{webhookId}": { @@ -17281,9 +16551,7 @@ } } }, - "tags": [ - "Webhooks" - ] + "tags": ["Webhooks"] }, "get": { "operationId": "WebhooksController_getWebhook", @@ -17311,9 +16579,7 @@ } } }, - "tags": [ - "Webhooks" - ] + "tags": ["Webhooks"] }, "delete": { "operationId": "WebhooksController_deleteWebhook", @@ -17349,9 +16615,7 @@ } } }, - "tags": [ - "Webhooks" - ] + "tags": ["Webhooks"] } } }, @@ -17494,10 +16758,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "type": "array", @@ -17506,10 +16767,7 @@ } } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "CreateManagedUserInput": { "type": "object", @@ -17525,25 +16783,14 @@ }, "timeFormat": { "type": "number", - "enum": [ - 12, - 24 - ], + "enum": [12, 24], "example": 12, "description": "Must be a number 12 or 24" }, "weekStart": { "type": "string", "example": "Monday", - "enum": [ - "Monday", - "Tuesday", - "Wednesday", - "Thursday", - "Friday", - "Saturday", - "Sunday" - ] + "enum": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"] }, "timeZone": { "type": "string", @@ -17617,10 +16864,7 @@ } } }, - "required": [ - "email", - "name" - ] + "required": ["email", "name"] }, "CreateManagedUserData": { "type": "object", @@ -17643,13 +16887,7 @@ "type": "number" } }, - "required": [ - "accessToken", - "refreshToken", - "user", - "accessTokenExpiresAt", - "refreshTokenExpiresAt" - ] + "required": ["accessToken", "refreshToken", "user", "accessTokenExpiresAt", "refreshTokenExpiresAt"] }, "CreateManagedUserOutput": { "type": "object", @@ -17657,10 +16895,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/CreateManagedUserData" @@ -17669,10 +16904,7 @@ "type": "object" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "GetManagedUserOutput": { "type": "object", @@ -17680,19 +16912,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/ManagedUserOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "UpdateManagedUserInput": { "type": "object", @@ -17705,10 +16931,7 @@ }, "timeFormat": { "type": "number", - "enum": [ - 12, - 24 - ], + "enum": [12, 24], "example": 12, "description": "Must be 12 or 24" }, @@ -17717,15 +16940,7 @@ }, "weekStart": { "type": "string", - "enum": [ - "Monday", - "Tuesday", - "Wednesday", - "Thursday", - "Friday", - "Saturday", - "Sunday" - ], + "enum": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"], "example": "Monday" }, "timeZone": { @@ -17817,12 +17032,7 @@ "type": "number" } }, - "required": [ - "accessToken", - "refreshToken", - "accessTokenExpiresAt", - "refreshTokenExpiresAt" - ] + "required": ["accessToken", "refreshToken", "accessTokenExpiresAt", "refreshTokenExpiresAt"] }, "KeysResponseDto": { "type": "object", @@ -17830,19 +17040,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/KeysDto" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "CreateOAuthClientInput": { "type": "object", @@ -17902,11 +17106,7 @@ "description": "If true and if managed user has calendar connected, calendar events will be created. Disable it if you manually create calendar events. Default to true." } }, - "required": [ - "name", - "redirectUris", - "permissions" - ] + "required": ["name", "redirectUris", "permissions"] }, "CreateOAuthClientOutput": { "type": "object", @@ -17920,20 +17120,14 @@ "example": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJuYW1lIjoib2F1dGgtY2xpZW50Iiwi" } }, - "required": [ - "clientId", - "clientSecret" - ] + "required": ["clientId", "clientSecret"] }, "CreateOAuthClientResponseDto": { "type": "object", "properties": { "status": { "type": "string", - "enum": [ - "success", - "error" - ], + "enum": ["success", "error"], "example": "success" }, "data": { @@ -17948,10 +17142,7 @@ ] } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "PlatformOAuthClientDto": { "type": "object", @@ -17986,19 +17177,14 @@ "PROFILE_WRITE" ] }, - "example": [ - "BOOKING_READ", - "BOOKING_WRITE" - ] + "example": ["BOOKING_READ", "BOOKING_WRITE"] }, "logo": { "type": "object", "example": "https://example.com/logo.png" }, "redirectUris": { - "example": [ - "https://example.com/callback" - ], + "example": ["https://example.com/callback"], "type": "array", "items": { "type": "string" @@ -18059,10 +17245,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "type": "array", @@ -18071,10 +17254,7 @@ } } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "GetOAuthClientResponseDto": { "type": "object", @@ -18082,19 +17262,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/PlatformOAuthClientDto" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "UpdateOAuthClientInput": { "type": "object", @@ -18141,9 +17315,7 @@ "description": "Managed user's refresh token." } }, - "required": [ - "refreshToken" - ] + "required": ["refreshToken"] }, "RefreshApiKeyInput": { "type": "object", @@ -18169,9 +17341,7 @@ "type": "string" } }, - "required": [ - "apiKey" - ] + "required": ["apiKey"] }, "RefreshApiKeyOutput": { "type": "object", @@ -18179,48 +17349,31 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/ApiKeyOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "BookerLayouts_2024_06_14": { "type": "object", "properties": { "defaultLayout": { "type": "string", - "enum": [ - "month", - "week", - "column" - ] + "enum": ["month", "week", "column"] }, "enabledLayouts": { "type": "array", "description": "Array of valid layouts - month, week or column", "items": { "type": "string", - "enum": [ - "month", - "week", - "column" - ] + "enum": ["month", "week", "column"] } } }, - "required": [ - "defaultLayout", - "enabledLayouts" - ] + "required": ["defaultLayout", "enabledLayouts"] }, "EventTypeColor_2024_06_14": { "type": "object", @@ -18236,10 +17389,7 @@ "example": "#fafafa" } }, - "required": [ - "lightThemeHex", - "darkThemeHex" - ] + "required": ["lightThemeHex", "darkThemeHex"] }, "DestinationCalendar_2024_06_14": { "type": "object", @@ -18253,10 +17403,7 @@ "description": "The external ID of the destination calendar. Refer to the /api/v2/calendars endpoint to retrieve the external IDs of your connected calendars." } }, - "required": [ - "integration", - "externalId" - ] + "required": ["integration", "externalId"] }, "InputAddressLocation_2024_06_14": { "type": "object", @@ -18274,11 +17421,7 @@ "type": "boolean" } }, - "required": [ - "type", - "address", - "public" - ] + "required": ["type", "address", "public"] }, "InputLinkLocation_2024_06_14": { "type": "object", @@ -18296,11 +17439,7 @@ "type": "boolean" } }, - "required": [ - "type", - "link", - "public" - ] + "required": ["type", "link", "public"] }, "InputIntegrationLocation_2024_06_14": { "type": "object", @@ -18346,10 +17485,7 @@ ] } }, - "required": [ - "type", - "integration" - ] + "required": ["type", "integration"] }, "InputPhoneLocation_2024_06_14": { "type": "object", @@ -18367,11 +17503,7 @@ "type": "boolean" } }, - "required": [ - "type", - "phone", - "public" - ] + "required": ["type", "phone", "public"] }, "PhoneFieldInput_2024_06_14": { "type": "object", @@ -18404,14 +17536,7 @@ "description": "If true show under event type settings but don't show this booking field in the Booker. If false show in both." } }, - "required": [ - "type", - "slug", - "label", - "required", - "placeholder", - "hidden" - ] + "required": ["type", "slug", "label", "required", "placeholder", "hidden"] }, "AddressFieldInput_2024_06_14": { "type": "object", @@ -18446,14 +17571,7 @@ "description": "If true show under event type settings but don't show this booking field in the Booker. If false show in both." } }, - "required": [ - "type", - "slug", - "label", - "required", - "placeholder", - "hidden" - ] + "required": ["type", "slug", "label", "required", "placeholder", "hidden"] }, "TextFieldInput_2024_06_14": { "type": "object", @@ -18488,14 +17606,7 @@ "description": "If true show under event type settings but don't show this booking field in the Booker. If false show in both." } }, - "required": [ - "type", - "slug", - "label", - "required", - "placeholder", - "hidden" - ] + "required": ["type", "slug", "label", "required", "placeholder", "hidden"] }, "NumberFieldInput_2024_06_14": { "type": "object", @@ -18530,14 +17641,7 @@ "description": "If true show under event type settings but don't show this booking field in the Booker. If false show in both." } }, - "required": [ - "type", - "slug", - "label", - "required", - "placeholder", - "hidden" - ] + "required": ["type", "slug", "label", "required", "placeholder", "hidden"] }, "TextAreaFieldInput_2024_06_14": { "type": "object", @@ -18572,14 +17676,7 @@ "description": "If true show under event type settings but don't show this booking field in the Booker. If false show in both." } }, - "required": [ - "type", - "slug", - "label", - "required", - "placeholder", - "hidden" - ] + "required": ["type", "slug", "label", "required", "placeholder", "hidden"] }, "SelectFieldInput_2024_06_14": { "type": "object", @@ -18606,10 +17703,7 @@ "example": "Select..." }, "options": { - "example": [ - "Option 1", - "Option 2" - ], + "example": ["Option 1", "Option 2"], "type": "array", "items": { "type": "string" @@ -18624,15 +17718,7 @@ "description": "If true show under event type settings but don't show this booking field in the Booker. If false show in both." } }, - "required": [ - "type", - "slug", - "label", - "required", - "placeholder", - "options", - "hidden" - ] + "required": ["type", "slug", "label", "required", "placeholder", "options", "hidden"] }, "MultiSelectFieldInput_2024_06_14": { "type": "object", @@ -18655,10 +17741,7 @@ "type": "boolean" }, "options": { - "example": [ - "Option 1", - "Option 2" - ], + "example": ["Option 1", "Option 2"], "type": "array", "items": { "type": "string" @@ -18673,14 +17756,7 @@ "description": "If true show under event type settings but don't show this booking field in the Booker. If false show in both." } }, - "required": [ - "type", - "slug", - "label", - "required", - "options", - "hidden" - ] + "required": ["type", "slug", "label", "required", "options", "hidden"] }, "MultiEmailFieldInput_2024_06_14": { "type": "object", @@ -18715,14 +17791,7 @@ "description": "If true show under event type settings but don't show this booking field in the Booker. If false show in both." } }, - "required": [ - "type", - "slug", - "label", - "required", - "placeholder", - "hidden" - ] + "required": ["type", "slug", "label", "required", "placeholder", "hidden"] }, "CheckboxGroupFieldInput_2024_06_14": { "type": "object", @@ -18745,10 +17814,7 @@ "type": "boolean" }, "options": { - "example": [ - "Checkbox 1", - "Checkbox 2" - ], + "example": ["Checkbox 1", "Checkbox 2"], "type": "array", "items": { "type": "string" @@ -18763,14 +17829,7 @@ "description": "If true show under event type settings but don't show this booking field in the Booker. If false show in both." } }, - "required": [ - "type", - "slug", - "label", - "required", - "options", - "hidden" - ] + "required": ["type", "slug", "label", "required", "options", "hidden"] }, "RadioGroupFieldInput_2024_06_14": { "type": "object", @@ -18793,10 +17852,7 @@ "type": "boolean" }, "options": { - "example": [ - "Radio 1", - "Radio 2" - ], + "example": ["Radio 1", "Radio 2"], "type": "array", "items": { "type": "string" @@ -18811,14 +17867,7 @@ "description": "If true show under event type settings but don't show this booking field in the Booker. If false show in both." } }, - "required": [ - "type", - "slug", - "label", - "required", - "options", - "hidden" - ] + "required": ["type", "slug", "label", "required", "options", "hidden"] }, "BooleanFieldInput_2024_06_14": { "type": "object", @@ -18849,13 +17898,7 @@ "description": "If true show under event type settings but don't show this booking field in the Booker. If false show in both." } }, - "required": [ - "type", - "slug", - "label", - "required", - "hidden" - ] + "required": ["type", "slug", "label", "required", "hidden"] }, "UrlFieldInput_2024_06_14": { "type": "object", @@ -18890,25 +17933,14 @@ "description": "If true show under event type settings but don't show this booking field in the Booker. If false show in both." } }, - "required": [ - "type", - "slug", - "label", - "required", - "placeholder", - "hidden" - ] + "required": ["type", "slug", "label", "required", "placeholder", "hidden"] }, "BusinessDaysWindow_2024_06_14": { "type": "object", "properties": { "type": { "type": "string", - "enum": [ - "businessDays", - "calendarDays", - "range" - ], + "enum": ["businessDays", "calendarDays", "range"], "description": "Whether the window should be business days, calendar days or a range of dates" }, "value": { @@ -18922,21 +17954,14 @@ "description": "\n Determines the behavior of the booking window:\n - If **true**, the window is rolling. This means the number of available days will always be equal the specified 'value' \n and adjust dynamically as bookings are made. For example, if 'value' is 3 and availability is only on Mondays, \n a booker attempting to schedule on November 10 will see slots on November 11, 18, and 25. As one of these days \n becomes fully booked, a new day (e.g., December 2) will open up to ensure 3 available days are always visible.\n - If **false**, the window is fixed. This means the booking window only considers the next 'value' days from the\n moment someone is trying to book. For example, if 'value' is 3, availability is only on Mondays, and the current \n date is November 10, the booker will only see slots on November 11 because the window is restricted to the next \n 3 calendar days (November 10–12).\n " } }, - "required": [ - "type", - "value" - ] + "required": ["type", "value"] }, "CalendarDaysWindow_2024_06_14": { "type": "object", "properties": { "type": { "type": "string", - "enum": [ - "businessDays", - "calendarDays", - "range" - ], + "enum": ["businessDays", "calendarDays", "range"], "description": "Whether the window should be business days, calendar days or a range of dates" }, "value": { @@ -18950,28 +17975,18 @@ "description": "\n Determines the behavior of the booking window:\n - If **true**, the window is rolling. This means the number of available days will always be equal the specified 'value' \n and adjust dynamically as bookings are made. For example, if 'value' is 3 and availability is only on Mondays, \n a booker attempting to schedule on November 10 will see slots on November 11, 18, and 25. As one of these days \n becomes fully booked, a new day (e.g., December 2) will open up to ensure 3 available days are always visible.\n - If **false**, the window is fixed. This means the booking window only considers the next 'value' days from the\n moment someone is trying to book. For example, if 'value' is 3, availability is only on Mondays, and the current \n date is November 10, the booker will only see slots on November 11 because the window is restricted to the next \n 3 calendar days (November 10–12).\n " } }, - "required": [ - "type", - "value" - ] + "required": ["type", "value"] }, "RangeWindow_2024_06_14": { "type": "object", "properties": { "type": { "type": "string", - "enum": [ - "businessDays", - "calendarDays", - "range" - ], + "enum": ["businessDays", "calendarDays", "range"], "description": "Whether the window should be business days, calendar days or a range of dates" }, "value": { - "example": [ - "2030-09-05", - "2030-09-09" - ], + "example": ["2030-09-05", "2030-09-09"], "description": "Date range for when this event can be booked.", "type": "array", "items": { @@ -18979,10 +17994,7 @@ } } }, - "required": [ - "type", - "value" - ] + "required": ["type", "value"] }, "BaseBookingLimitsCount_2024_06_14": { "type": "object", @@ -19036,9 +18048,7 @@ "example": true } }, - "required": [ - "disabled" - ] + "required": ["disabled"] }, "BaseBookingLimitsDuration_2024_06_14": { "type": "object", @@ -19080,18 +18090,10 @@ }, "frequency": { "type": "string", - "enum": [ - "yearly", - "monthly", - "weekly" - ] + "enum": ["yearly", "monthly", "weekly"] } }, - "required": [ - "interval", - "occurrences", - "frequency" - ] + "required": ["interval", "occurrences", "frequency"] }, "NoticeThreshold_2024_06_14": { "type": "object", @@ -19107,10 +18109,7 @@ "example": 30 } }, - "required": [ - "unit", - "count" - ] + "required": ["unit", "count"] }, "BaseConfirmationPolicy_2024_06_14": { "type": "object", @@ -19118,10 +18117,7 @@ "type": { "type": "string", "description": "The policy that determines when confirmation is required", - "enum": [ - "always", - "time" - ], + "enum": ["always", "time"], "example": "always" }, "noticeThreshold": { @@ -19137,10 +18133,7 @@ "description": "Unconfirmed bookings still block calendar slots." } }, - "required": [ - "type", - "blockUnconfirmedBookingsInBooker" - ] + "required": ["type", "blockUnconfirmedBookingsInBooker"] }, "Seats_2024_06_14": { "type": "object", @@ -19161,11 +18154,7 @@ "example": true } }, - "required": [ - "seatsPerTimeSlot", - "showAttendeeInfo", - "showAvailabilityCount" - ] + "required": ["seatsPerTimeSlot", "showAttendeeInfo", "showAvailabilityCount"] }, "InputAttendeeAddressLocation_2024_06_14": { "type": "object", @@ -19176,9 +18165,7 @@ "description": "only allowed value for type is `attendeeAddress`" } }, - "required": [ - "type" - ] + "required": ["type"] }, "InputAttendeePhoneLocation_2024_06_14": { "type": "object", @@ -19189,9 +18176,7 @@ "description": "only allowed value for type is `attendeePhone`" } }, - "required": [ - "type" - ] + "required": ["type"] }, "InputAttendeeDefinedLocation_2024_06_14": { "type": "object", @@ -19202,9 +18187,7 @@ "description": "only allowed value for type is `attendeeDefined`" } }, - "required": [ - "type" - ] + "required": ["type"] }, "NameDefaultFieldInput_2024_06_14": { "type": "object", @@ -19225,11 +18208,7 @@ "description": "Disable this booking field if the URL contains query parameter with key equal to the slug and prefill it with the provided value. For example, if URL contains query parameter `&name=bob`, the name field will be prefilled with this value and disabled. In case of Booker atom need to pass 'name' to defaultFormValues prop with the desired value e.g. `defaultFormValues={{name: 'bob'}}`. See guide https://cal.com/docs/platform/guides/booking-fields" } }, - "required": [ - "type", - "label", - "placeholder" - ] + "required": ["type", "label", "placeholder"] }, "EmailDefaultFieldInput_2024_06_14": { "type": "object", @@ -19258,11 +18237,7 @@ "description": "Disable this booking field if the URL contains query parameter with key equal to the slug and prefill it with the provided value. For example, if URL contains query parameter `&email=bob@gmail.com`, the email field will be prefilled with this value and disabled. In case of Booker atom need to pass 'email' to defaultFormValues prop with the desired value e.g. `defaultFormValues={{email: 'bob@gmail.com'}}`. See guide https://cal.com/docs/platform/guides/booking-field" } }, - "required": [ - "type", - "label", - "placeholder" - ] + "required": ["type", "label", "placeholder"] }, "TitleDefaultFieldInput_2024_06_14": { "type": "object", @@ -19290,9 +18265,7 @@ "description": "Disable this booking field if the URL contains query parameter with key equal to the slug and prefill it with the provided value. For example, if URL contains query parameter `&title=journey`, the title field will be prefilled with this value and disabled. In case of Booker atom need to pass 'title' to defaultFormValues prop with the desired value e.g. `defaultFormValues={{title: 'very important meeting'}}`. See guide https://cal.com/docs/platform/guides/booking-field" } }, - "required": [ - "slug" - ] + "required": ["slug"] }, "LocationDefaultFieldInput_2024_06_14": { "type": "object", @@ -19306,9 +18279,7 @@ "type": "string" } }, - "required": [ - "slug" - ] + "required": ["slug"] }, "NotesDefaultFieldInput_2024_06_14": { "type": "object", @@ -19336,9 +18307,7 @@ "description": "Disable this booking field if the URL contains query parameter with key equal to the slug and prefill it with the provided value. For example, if URL contains query parameter `¬es=journey`, the notes field will be prefilled with this value and disabled. In case of Booker atom need to pass 'notes' to defaultFormValues prop with the desired value e.g. `defaultFormValues={{notes: 'bring notebook and paper'}}`. See guide https://cal.com/docs/platform/guides/booking-field" } }, - "required": [ - "slug" - ] + "required": ["slug"] }, "GuestsDefaultFieldInput_2024_06_14": { "type": "object", @@ -19366,9 +18335,7 @@ "description": "Disable this booking field if the URL contains query parameter with key equal to the slug and prefill it with the provided value. For example, if URL contains query parameter `&guests=bob@cal.com`, the guests field will be prefilled with this value and disabled. In case of Booker atom need to pass 'guests' to defaultFormValues prop with the desired value e.g. `defaultFormValues={{guests: ['bob@gmail.com', 'alice@gmail.com']}}`. See guide https://cal.com/docs/platform/guides/booking-field" } }, - "required": [ - "slug" - ] + "required": ["slug"] }, "RescheduleReasonDefaultFieldInput_2024_06_14": { "type": "object", @@ -19396,9 +18363,7 @@ "description": "Disable this booking field if the URL contains query parameter with key equal to the slug and prefill it with the provided value. For example, if URL contains query parameter `&rescheduleReason=travel`, the rescheduleReason field will be prefilled with this value and disabled. In case of Booker atom need to pass 'rescheduleReason' to defaultFormValues prop with the desired value e.g. `defaultFormValues={{rescheduleReason: 'bob'}}`. See guide https://cal.com/docs/platform/guides/booking-field" } }, - "required": [ - "slug" - ] + "required": ["slug"] }, "InputOrganizersDefaultApp_2024_06_14": { "type": "object", @@ -19409,9 +18374,7 @@ "description": "only allowed value for type is `organizersDefaultApp`" } }, - "required": [ - "type" - ] + "required": ["type"] }, "EmailSettings_2024_06_14": { "type": "object", @@ -19497,11 +18460,7 @@ "example": 60 }, "lengthInMinutesOptions": { - "example": [ - 15, - 30, - 60 - ], + "example": [15, 30, 60], "description": "If you want that user can choose between different lengths of the event you can specify them here. Must include the provided `lengthInMinutes`.", "type": "array", "items": { @@ -19871,11 +18830,7 @@ } } }, - "required": [ - "lengthInMinutes", - "title", - "slug" - ] + "required": ["lengthInMinutes", "title", "slug"] }, "OutputAddressLocation_2024_06_14": { "type": "object", @@ -19893,11 +18848,7 @@ "type": "boolean" } }, - "required": [ - "type", - "address", - "public" - ] + "required": ["type", "address", "public"] }, "OutputLinkLocation_2024_06_14": { "type": "object", @@ -19915,11 +18866,7 @@ "type": "boolean" } }, - "required": [ - "type", - "link", - "public" - ] + "required": ["type", "link", "public"] }, "OutputIntegrationLocation_2024_06_14": { "type": "object", @@ -19973,10 +18920,7 @@ "description": "Credential ID associated with the integration" } }, - "required": [ - "type", - "integration" - ] + "required": ["type", "integration"] }, "OutputPhoneLocation_2024_06_14": { "type": "object", @@ -19994,11 +18938,7 @@ "type": "boolean" } }, - "required": [ - "type", - "phone", - "public" - ] + "required": ["type", "phone", "public"] }, "OutputOrganizersDefaultAppLocation_2024_06_14": { "type": "object", @@ -20009,9 +18949,7 @@ "description": "only allowed value for type is `organizersDefaultApp`" } }, - "required": [ - "type" - ] + "required": ["type"] }, "OutputUnknownLocation_2024_06_14": { "type": "object", @@ -20025,10 +18963,7 @@ "type": "string" } }, - "required": [ - "type", - "location" - ] + "required": ["type", "location"] }, "EmailDefaultFieldOutput_2024_06_14": { "type": "object", @@ -20068,13 +19003,7 @@ "default": "email" } }, - "required": [ - "type", - "label", - "placeholder", - "isDefault", - "slug" - ] + "required": ["type", "label", "placeholder", "isDefault", "slug"] }, "NameDefaultFieldOutput_2024_06_14": { "type": "object", @@ -20109,14 +19038,7 @@ "type": "boolean" } }, - "required": [ - "type", - "label", - "placeholder", - "isDefault", - "slug", - "required" - ] + "required": ["type", "label", "placeholder", "isDefault", "slug", "required"] }, "LocationDefaultFieldOutput_2024_06_14": { "type": "object", @@ -20147,14 +19069,7 @@ "type": "string" } }, - "required": [ - "isDefault", - "slug", - "type", - "required", - "hidden", - "label" - ] + "required": ["isDefault", "slug", "type", "required", "hidden", "label"] }, "RescheduleReasonDefaultFieldOutput_2024_06_14": { "type": "object", @@ -20193,11 +19108,7 @@ "default": "textarea" } }, - "required": [ - "slug", - "isDefault", - "type" - ] + "required": ["slug", "isDefault", "type"] }, "TitleDefaultFieldOutput_2024_06_14": { "type": "object", @@ -20236,11 +19147,7 @@ "default": "text" } }, - "required": [ - "slug", - "isDefault", - "type" - ] + "required": ["slug", "isDefault", "type"] }, "NotesDefaultFieldOutput_2024_06_14": { "type": "object", @@ -20279,11 +19186,7 @@ "default": "textarea" } }, - "required": [ - "slug", - "isDefault", - "type" - ] + "required": ["slug", "isDefault", "type"] }, "GuestsDefaultFieldOutput_2024_06_14": { "type": "object", @@ -20322,11 +19225,7 @@ "default": "multiemail" } }, - "required": [ - "slug", - "isDefault", - "type" - ] + "required": ["slug", "isDefault", "type"] }, "AddressFieldOutput_2024_06_14": { "type": "object", @@ -20367,15 +19266,7 @@ "default": false } }, - "required": [ - "type", - "slug", - "label", - "required", - "placeholder", - "hidden", - "isDefault" - ] + "required": ["type", "slug", "label", "required", "placeholder", "hidden", "isDefault"] }, "BooleanFieldOutput_2024_06_14": { "type": "object", @@ -20412,14 +19303,7 @@ "default": false } }, - "required": [ - "type", - "slug", - "label", - "required", - "hidden", - "isDefault" - ] + "required": ["type", "slug", "label", "required", "hidden", "isDefault"] }, "CheckboxGroupFieldOutput_2024_06_14": { "type": "object", @@ -20442,10 +19326,7 @@ "type": "boolean" }, "options": { - "example": [ - "Checkbox 1", - "Checkbox 2" - ], + "example": ["Checkbox 1", "Checkbox 2"], "type": "array", "items": { "type": "string" @@ -20466,15 +19347,7 @@ "default": false } }, - "required": [ - "type", - "slug", - "label", - "required", - "options", - "hidden", - "isDefault" - ] + "required": ["type", "slug", "label", "required", "options", "hidden", "isDefault"] }, "MultiEmailFieldOutput_2024_06_14": { "type": "object", @@ -20515,15 +19388,7 @@ "default": false } }, - "required": [ - "type", - "slug", - "label", - "required", - "placeholder", - "hidden", - "isDefault" - ] + "required": ["type", "slug", "label", "required", "placeholder", "hidden", "isDefault"] }, "MultiSelectFieldOutput_2024_06_14": { "type": "object", @@ -20546,10 +19411,7 @@ "type": "boolean" }, "options": { - "example": [ - "Option 1", - "Option 2" - ], + "example": ["Option 1", "Option 2"], "type": "array", "items": { "type": "string" @@ -20570,15 +19432,7 @@ "default": false } }, - "required": [ - "type", - "slug", - "label", - "required", - "options", - "hidden", - "isDefault" - ] + "required": ["type", "slug", "label", "required", "options", "hidden", "isDefault"] }, "UrlFieldOutput_2024_06_14": { "type": "object", @@ -20619,15 +19473,7 @@ "default": false } }, - "required": [ - "type", - "slug", - "label", - "required", - "placeholder", - "hidden", - "isDefault" - ] + "required": ["type", "slug", "label", "required", "placeholder", "hidden", "isDefault"] }, "NumberFieldOutput_2024_06_14": { "type": "object", @@ -20668,15 +19514,7 @@ "default": false } }, - "required": [ - "type", - "slug", - "label", - "required", - "placeholder", - "hidden", - "isDefault" - ] + "required": ["type", "slug", "label", "required", "placeholder", "hidden", "isDefault"] }, "PhoneFieldOutput_2024_06_14": { "type": "object", @@ -20715,15 +19553,7 @@ "default": false } }, - "required": [ - "type", - "slug", - "label", - "required", - "placeholder", - "hidden", - "isDefault" - ] + "required": ["type", "slug", "label", "required", "placeholder", "hidden", "isDefault"] }, "RadioGroupFieldOutput_2024_06_14": { "type": "object", @@ -20746,10 +19576,7 @@ "type": "boolean" }, "options": { - "example": [ - "Radio 1", - "Radio 2" - ], + "example": ["Radio 1", "Radio 2"], "type": "array", "items": { "type": "string" @@ -20770,15 +19597,7 @@ "default": false } }, - "required": [ - "type", - "slug", - "label", - "required", - "options", - "hidden", - "isDefault" - ] + "required": ["type", "slug", "label", "required", "options", "hidden", "isDefault"] }, "SelectFieldOutput_2024_06_14": { "type": "object", @@ -20805,10 +19624,7 @@ "example": "Select..." }, "options": { - "example": [ - "Option 1", - "Option 2" - ], + "example": ["Option 1", "Option 2"], "type": "array", "items": { "type": "string" @@ -20829,16 +19645,7 @@ "default": false } }, - "required": [ - "type", - "slug", - "label", - "required", - "placeholder", - "options", - "hidden", - "isDefault" - ] + "required": ["type", "slug", "label", "required", "placeholder", "options", "hidden", "isDefault"] }, "TextAreaFieldOutput_2024_06_14": { "type": "object", @@ -20879,15 +19686,7 @@ "default": false } }, - "required": [ - "type", - "slug", - "label", - "required", - "placeholder", - "hidden", - "isDefault" - ] + "required": ["type", "slug", "label", "required", "placeholder", "hidden", "isDefault"] }, "TextFieldOutput_2024_06_14": { "type": "object", @@ -20928,15 +19727,7 @@ "default": false } }, - "required": [ - "type", - "slug", - "label", - "required", - "placeholder", - "hidden", - "isDefault" - ] + "required": ["type", "slug", "label", "required", "placeholder", "hidden", "isDefault"] }, "BookerActiveBookingsLimitOutput_2024_06_14": { "type": "object", @@ -20989,11 +19780,7 @@ "example": 60 }, "lengthInMinutesOptions": { - "example": [ - 15, - 30, - 60 - ], + "example": [15, 30, 60], "description": "If you want that user can choose between different lengths of the event you can specify them here. Must include the provided `lengthInMinutes`.", "type": "array", "items": { @@ -21327,20 +20114,14 @@ "properties": { "status": { "type": "string", - "enum": [ - "success", - "error" - ], + "enum": ["success", "error"], "example": "success" }, "data": { "$ref": "#/components/schemas/EventTypeOutput_2024_06_14" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "EventTypeTeam": { "type": "object", @@ -21397,11 +20178,7 @@ "example": 60 }, "lengthInMinutesOptions": { - "example": [ - 15, - 30, - 60 - ], + "example": [15, 30, 60], "description": "If you want that user can choose between different lengths of the event you can specify them here. Must include the provided `lengthInMinutes`.", "type": "array", "items": { @@ -21711,11 +20488,7 @@ }, "schedulingType": { "type": "string", - "enum": [ - "roundRobin", - "collective", - "managed" - ] + "enum": ["roundRobin", "collective", "managed"] }, "team": { "$ref": "#/components/schemas/EventTypeTeam" @@ -21764,10 +20537,7 @@ "properties": { "status": { "type": "string", - "enum": [ - "success", - "error" - ], + "enum": ["success", "error"], "example": "success" }, "data": { @@ -21781,20 +20551,14 @@ ] } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "GetEventTypesOutput_2024_06_14": { "type": "object", "properties": { "status": { "type": "string", - "enum": [ - "success", - "error" - ], + "enum": ["success", "error"], "example": "success" }, "data": { @@ -21804,10 +20568,7 @@ } } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "UpdateEventTypeInput_2024_06_14": { "type": "object", @@ -21817,11 +20578,7 @@ "example": 60 }, "lengthInMinutesOptions": { - "example": [ - 15, - 30, - 60 - ], + "example": [15, 30, 60], "description": "If you want that user can choose between different lengths of the event you can specify them here. Must include the provided `lengthInMinutes`.", "type": "array", "items": { @@ -22194,20 +20951,14 @@ "properties": { "status": { "type": "string", - "enum": [ - "success", - "error" - ], + "enum": ["success", "error"], "example": "success" }, "data": { "$ref": "#/components/schemas/EventTypeOutput_2024_06_14" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "DeleteData_2024_06_14": { "type": "object", @@ -22228,32 +20979,21 @@ "type": "string" } }, - "required": [ - "id", - "lengthInMinutes", - "title", - "slug" - ] + "required": ["id", "lengthInMinutes", "title", "slug"] }, "DeleteEventTypeOutput_2024_06_14": { "type": "object", "properties": { "status": { "type": "string", - "enum": [ - "success", - "error" - ], + "enum": ["success", "error"], "example": "success" }, "data": { "$ref": "#/components/schemas/DeleteData_2024_06_14" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "SelectedCalendarsInputDto": { "type": "object", @@ -22271,11 +21011,7 @@ "type": "string" } }, - "required": [ - "integration", - "externalId", - "credentialId" - ] + "required": ["integration", "externalId", "credentialId"] }, "SelectedCalendarOutputDto": { "type": "object", @@ -22294,12 +21030,7 @@ "nullable": true } }, - "required": [ - "userId", - "integration", - "externalId", - "credentialId" - ] + "required": ["userId", "integration", "externalId", "credentialId"] }, "SelectedCalendarOutputResponseDto": { "type": "object", @@ -22307,19 +21038,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/SelectedCalendarOutputDto" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "StripConnectOutputDto": { "type": "object", @@ -22328,9 +21053,7 @@ "type": "string" } }, - "required": [ - "authUrl" - ] + "required": ["authUrl"] }, "StripConnectOutputResponseDto": { "type": "object", @@ -22338,19 +21061,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/StripConnectOutputDto" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "StripCredentialsSaveOutputResponseDto": { "type": "object", @@ -22359,9 +21076,7 @@ "type": "string" } }, - "required": [ - "url" - ] + "required": ["url"] }, "StripCredentialsCheckOutputResponseDto": { "type": "object", @@ -22371,9 +21086,7 @@ "example": "success" } }, - "required": [ - "status" - ] + "required": ["status"] }, "OrgTeamOutputDto": { "type": "object", @@ -22449,11 +21162,7 @@ "default": "Sunday" } }, - "required": [ - "id", - "name", - "isOrganization" - ] + "required": ["id", "name", "isOrganization"] }, "OrgTeamsOutputResponseDto": { "type": "object", @@ -22461,10 +21170,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "type": "array", @@ -22473,10 +21179,7 @@ } } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "OrgMeTeamsOutputResponseDto": { "type": "object", @@ -22484,10 +21187,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "type": "array", @@ -22496,10 +21196,7 @@ } } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "OrgTeamOutputResponseDto": { "type": "object", @@ -22507,19 +21204,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/OrgTeamOutputDto" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "UpdateOrgTeamDto": { "type": "object", @@ -22684,40 +21375,19 @@ "description": "If you are a platform customer, don't pass 'false', because then team creator won't be able to create team event types." } }, - "required": [ - "name" - ] + "required": ["name"] }, "ScheduleAvailabilityInput_2024_06_11": { "type": "object", "properties": { "days": { "type": "array", - "enum": [ - "Monday", - "Tuesday", - "Wednesday", - "Thursday", - "Friday", - "Saturday", - "Sunday" - ], - "example": [ - "Monday", - "Tuesday" - ], + "enum": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"], + "example": ["Monday", "Tuesday"], "description": "Array of days when schedule is active.", "items": { "type": "string", - "enum": [ - "Monday", - "Tuesday", - "Wednesday", - "Thursday", - "Friday", - "Saturday", - "Sunday" - ] + "enum": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"] } }, "startTime": { @@ -22733,11 +21403,7 @@ "description": "endTime must be a valid time in format HH:MM e.g. 15:00" } }, - "required": [ - "days", - "startTime", - "endTime" - ] + "required": ["days", "startTime", "endTime"] }, "ScheduleOverrideInput_2024_06_11": { "type": "object", @@ -22759,11 +21425,7 @@ "description": "endTime must be a valid time in format HH:MM e.g. 13:00" } }, - "required": [ - "date", - "startTime", - "endTime" - ] + "required": ["date", "startTime", "endTime"] }, "ScheduleOutput_2024_06_11": { "type": "object", @@ -22787,18 +21449,12 @@ "availability": { "example": [ { - "days": [ - "Monday", - "Tuesday" - ], + "days": ["Monday", "Tuesday"], "startTime": "17:00", "endTime": "19:00" }, { - "days": [ - "Wednesday", - "Thursday" - ], + "days": ["Wednesday", "Thursday"], "startTime": "16:00", "endTime": "20:00" } @@ -22826,15 +21482,7 @@ } } }, - "required": [ - "id", - "ownerId", - "name", - "timeZone", - "availability", - "isDefault", - "overrides" - ] + "required": ["id", "ownerId", "name", "timeZone", "availability", "isDefault", "overrides"] }, "GetSchedulesOutput_2024_06_11": { "type": "object", @@ -22842,10 +21490,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "type": "array", @@ -22857,10 +21502,7 @@ "type": "object" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "CreateScheduleInput_2024_06_11": { "type": "object", @@ -22878,18 +21520,12 @@ "description": "Each object contains days and times when the user is available. If not passed, the default availability is Monday to Friday from 09:00 to 17:00.", "example": [ { - "days": [ - "Monday", - "Tuesday" - ], + "days": ["Monday", "Tuesday"], "startTime": "17:00", "endTime": "19:00" }, { - "days": [ - "Wednesday", - "Thursday" - ], + "days": ["Wednesday", "Thursday"], "startTime": "16:00", "endTime": "20:00" } @@ -22919,11 +21555,7 @@ } } }, - "required": [ - "name", - "timeZone", - "isDefault" - ] + "required": ["name", "timeZone", "isDefault"] }, "CreateScheduleOutput_2024_06_11": { "type": "object", @@ -22931,19 +21563,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/ScheduleOutput_2024_06_11" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "GetScheduleOutput_2024_06_11": { "type": "object", @@ -22951,10 +21577,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "nullable": true, @@ -22968,10 +21591,7 @@ "type": "object" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "UpdateScheduleInput_2024_06_11": { "type": "object", @@ -22987,10 +21607,7 @@ "availability": { "example": [ { - "days": [ - "Monday", - "Tuesday" - ], + "days": ["Monday", "Tuesday"], "startTime": "09:00", "endTime": "10:00" } @@ -23025,10 +21642,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/ScheduleOutput_2024_06_11" @@ -23037,10 +21651,7 @@ "type": "object" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "DeleteScheduleOutput_2024_06_11": { "type": "object", @@ -23048,15 +21659,10 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] } }, - "required": [ - "status" - ] + "required": ["status"] }, "ProfileOutput": { "type": "object", @@ -23083,11 +21689,7 @@ "example": "john_doe" } }, - "required": [ - "id", - "organizationId", - "userId" - ] + "required": ["id", "organizationId", "userId"] }, "GetOrgUsersWithProfileOutput": { "type": "object", @@ -23229,15 +21831,7 @@ ] } }, - "required": [ - "id", - "email", - "timeZone", - "weekStart", - "hideBranding", - "createdDate", - "profile" - ] + "required": ["id", "email", "timeZone", "weekStart", "hideBranding", "createdDate", "profile"] }, "GetOrganizationUsersResponseDTO": { "type": "object", @@ -23245,10 +21839,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "type": "array", @@ -23257,10 +21848,7 @@ } } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "CreateOrganizationUserInput": { "type": "object", @@ -23350,20 +21938,14 @@ "organizationRole": { "type": "string", "default": "MEMBER", - "enum": [ - "MEMBER", - "ADMIN", - "OWNER" - ] + "enum": ["MEMBER", "ADMIN", "OWNER"] }, "autoAccept": { "type": "boolean", "default": true } }, - "required": [ - "email" - ] + "required": ["email"] }, "GetOrganizationUserOutput": { "type": "object", @@ -23371,19 +21953,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/GetOrgUsersWithProfileOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "UpdateOrganizationUserInput": { "type": "object", @@ -23399,10 +21975,7 @@ "type": "string" } }, - "required": [ - "id", - "name" - ] + "required": ["id", "name"] }, "TextAttribute": { "type": "object", @@ -23423,13 +21996,7 @@ "type": "string" } }, - "required": [ - "id", - "name", - "type", - "option", - "optionId" - ] + "required": ["id", "name", "type", "option", "optionId"] }, "NumberAttribute": { "type": "object", @@ -23450,13 +22017,7 @@ "type": "string" } }, - "required": [ - "id", - "name", - "type", - "option", - "optionId" - ] + "required": ["id", "name", "type", "option", "optionId"] }, "SingleSelectAttribute": { "type": "object", @@ -23477,13 +22038,7 @@ "type": "string" } }, - "required": [ - "id", - "name", - "type", - "option", - "optionId" - ] + "required": ["id", "name", "type", "option", "optionId"] }, "MultiSelectAttributeOption": { "type": "object", @@ -23495,10 +22050,7 @@ "type": "string" } }, - "required": [ - "optionId", - "option" - ] + "required": ["optionId", "option"] }, "MultiSelectAttribute": { "type": "object", @@ -23519,12 +22071,7 @@ } } }, - "required": [ - "id", - "name", - "type", - "options" - ] + "required": ["id", "name", "type", "options"] }, "MembershipUserOutputDto": { "type": "object", @@ -23551,9 +22098,7 @@ } } }, - "required": [ - "email" - ] + "required": ["email"] }, "OrganizationMembershipOutput": { "type": "object", @@ -23572,11 +22117,7 @@ }, "role": { "type": "string", - "enum": [ - "MEMBER", - "OWNER", - "ADMIN" - ] + "enum": ["MEMBER", "OWNER", "ADMIN"] }, "disableImpersonation": { "type": "boolean" @@ -23604,15 +22145,7 @@ } } }, - "required": [ - "id", - "userId", - "teamId", - "accepted", - "role", - "user", - "attributes" - ] + "required": ["id", "userId", "teamId", "accepted", "role", "user", "attributes"] }, "GetAllOrgMemberships": { "type": "object", @@ -23620,19 +22153,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/OrganizationMembershipOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "CreateOrgMembershipDto": { "type": "object", @@ -23647,11 +22174,7 @@ "role": { "type": "string", "default": "MEMBER", - "enum": [ - "MEMBER", - "OWNER", - "ADMIN" - ], + "enum": ["MEMBER", "OWNER", "ADMIN"], "description": "If you are platform customer then managed users should only have MEMBER role." }, "disableImpersonation": { @@ -23659,10 +22182,7 @@ "default": false } }, - "required": [ - "userId", - "role" - ] + "required": ["userId", "role"] }, "CreateOrgMembershipOutput": { "type": "object", @@ -23670,19 +22190,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/OrganizationMembershipOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "GetOrgMembership": { "type": "object", @@ -23690,19 +22204,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/OrganizationMembershipOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "DeleteOrgMembership": { "type": "object", @@ -23710,19 +22218,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/OrganizationMembershipOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "UpdateOrgMembershipDto": { "type": "object", @@ -23732,11 +22234,7 @@ }, "role": { "type": "string", - "enum": [ - "MEMBER", - "OWNER", - "ADMIN" - ] + "enum": ["MEMBER", "OWNER", "ADMIN"] }, "disableImpersonation": { "type": "boolean" @@ -23749,19 +22247,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/OrganizationMembershipOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "Host": { "type": "object", @@ -23776,18 +22268,10 @@ }, "priority": { "type": "string", - "enum": [ - "lowest", - "low", - "medium", - "high", - "highest" - ] + "enum": ["lowest", "low", "medium", "high", "highest"] } }, - "required": [ - "userId" - ] + "required": ["userId"] }, "CreateTeamEventTypeInput_2024_06_14": { "type": "object", @@ -23797,11 +22281,7 @@ "example": 60 }, "lengthInMinutesOptions": { - "example": [ - 15, - 30, - 60 - ], + "example": [15, 30, 60], "description": "If you want that user can choose between different lengths of the event you can specify them here. Must include the provided `lengthInMinutes`.", "type": "array", "items": { @@ -24143,11 +22623,7 @@ }, "schedulingType": { "type": "string", - "enum": [ - "collective", - "roundRobin", - "managed" - ], + "enum": ["collective", "roundRobin", "managed"], "example": "collective", "description": "The scheduling type for the team event - collective, roundRobin or managed." }, @@ -24207,12 +22683,7 @@ "description": "Rescheduled events will be assigned to the same host as initially scheduled." } }, - "required": [ - "lengthInMinutes", - "title", - "slug", - "schedulingType" - ] + "required": ["lengthInMinutes", "title", "slug", "schedulingType"] }, "CreateTeamEventTypeOutput": { "type": "object", @@ -24220,10 +22691,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "oneOf": [ @@ -24239,10 +22707,7 @@ ] } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "GetTeamEventTypeOutput": { "type": "object", @@ -24250,19 +22715,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/TeamEventTypeOutput_2024_06_14" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "CreatePhoneCallInput": { "type": "object", @@ -24288,10 +22747,7 @@ }, "templateType": { "default": "CUSTOM_TEMPLATE", - "enum": [ - "CHECK_IN_APPOINTMENT", - "CUSTOM_TEMPLATE" - ], + "enum": ["CHECK_IN_APPOINTMENT", "CUSTOM_TEMPLATE"], "type": "string", "description": "Template type" }, @@ -24320,13 +22776,7 @@ "description": "General prompt" } }, - "required": [ - "yourPhoneNumber", - "numberToCall", - "calApiKey", - "enabled", - "templateType" - ] + "required": ["yourPhoneNumber", "numberToCall", "calApiKey", "enabled", "templateType"] }, "Data": { "type": "object", @@ -24338,9 +22788,7 @@ "type": "string" } }, - "required": [ - "callId" - ] + "required": ["callId"] }, "CreatePhoneCallOutput": { "type": "object", @@ -24348,19 +22796,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/Data" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "GetTeamEventTypesOutput": { "type": "object", @@ -24368,10 +22810,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "type": "array", @@ -24380,10 +22819,7 @@ } } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "UpdateTeamEventTypeInput_2024_06_14": { "type": "object", @@ -24393,11 +22829,7 @@ "example": 60 }, "lengthInMinutesOptions": { - "example": [ - 15, - 30, - 60 - ], + "example": [15, 30, 60], "description": "If you want that user can choose between different lengths of the event you can specify them here. Must include the provided `lengthInMinutes`.", "type": "array", "items": { @@ -24736,10 +23168,7 @@ }, "schedulingType": { "type": "string", - "enum": [ - "collective", - "roundRobin" - ], + "enum": ["collective", "roundRobin"], "example": "collective", "description": "The scheduling type for the team event - collective or roundRobin. ❗If you change scheduling type you must also provide `hosts` or `assignAllTeamMembers` in the request body, otherwise the event type will have no hosts - this is required because\n in case of collective event type all hosts are mandatory but in case of round robin some or non can be mandatory so we can't predict how you want the hosts to be setup which is why you must provide that information. If you want to convert round robin or collective into managed or managed into round robin or collective then you will have to create a new team event type and delete old one." }, @@ -24806,10 +23235,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "oneOf": [ @@ -24825,10 +23251,7 @@ ] } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "DeleteTeamEventTypeOutput": { "type": "object", @@ -24836,19 +23259,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "type": "object" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "TeamMembershipOutput": { "type": "object", @@ -24867,11 +23284,7 @@ }, "role": { "type": "string", - "enum": [ - "MEMBER", - "OWNER", - "ADMIN" - ] + "enum": ["MEMBER", "OWNER", "ADMIN"] }, "disableImpersonation": { "type": "boolean" @@ -24880,14 +23293,7 @@ "$ref": "#/components/schemas/MembershipUserOutputDto" } }, - "required": [ - "id", - "userId", - "teamId", - "accepted", - "role", - "user" - ] + "required": ["id", "userId", "teamId", "accepted", "role", "user"] }, "OrgTeamMembershipsOutputResponseDto": { "type": "object", @@ -24895,10 +23301,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "type": "array", @@ -24907,10 +23310,7 @@ } } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "OrgTeamMembershipOutputResponseDto": { "type": "object", @@ -24918,19 +23318,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/TeamMembershipOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "UpdateOrgTeamMembershipDto": { "type": "object", @@ -24940,11 +23334,7 @@ }, "role": { "type": "string", - "enum": [ - "MEMBER", - "OWNER", - "ADMIN" - ] + "enum": ["MEMBER", "OWNER", "ADMIN"] }, "disableImpersonation": { "type": "boolean" @@ -24964,21 +23354,14 @@ "role": { "type": "string", "default": "MEMBER", - "enum": [ - "MEMBER", - "OWNER", - "ADMIN" - ] + "enum": ["MEMBER", "OWNER", "ADMIN"] }, "disableImpersonation": { "type": "boolean", "default": false } }, - "required": [ - "userId", - "role" - ] + "required": ["userId", "role"] }, "InviteDataDto": { "type": "object", @@ -24994,10 +23377,7 @@ "example": "http://app.cal.com/signup?token=f6a5c8b1d2e34c7f90a1b2c3d4e5f6a5b7c8d9e0f1a2b3c4d5e6f7a8b9c0d1e2&callbackUrl=/getting-started" } }, - "required": [ - "token", - "inviteLink" - ] + "required": ["token", "inviteLink"] }, "CreateInviteOutputDto": { "type": "object", @@ -25005,19 +23385,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/InviteDataDto" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "Attribute": { "type": "object", @@ -25035,12 +23409,7 @@ "type": { "type": "string", "description": "The type of the attribute", - "enum": [ - "TEXT", - "NUMBER", - "SINGLE_SELECT", - "MULTI_SELECT" - ] + "enum": ["TEXT", "NUMBER", "SINGLE_SELECT", "MULTI_SELECT"] }, "name": { "type": "string", @@ -25063,14 +23432,7 @@ "example": true } }, - "required": [ - "id", - "teamId", - "type", - "name", - "slug", - "enabled" - ] + "required": ["id", "teamId", "type", "name", "slug", "enabled"] }, "GetOrganizationAttributesOutput": { "type": "object", @@ -25078,10 +23440,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "type": "array", @@ -25090,10 +23449,7 @@ } } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "GetSingleAttributeOutput": { "type": "object", @@ -25101,10 +23457,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "nullable": true, @@ -25115,10 +23468,7 @@ ] } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "CreateOrganizationAttributeOptionInput": { "type": "object", @@ -25130,10 +23480,7 @@ "type": "string" } }, - "required": [ - "value", - "slug" - ] + "required": ["value", "slug"] }, "CreateOrganizationAttributeInput": { "type": "object", @@ -25146,12 +23493,7 @@ }, "type": { "type": "string", - "enum": [ - "TEXT", - "NUMBER", - "SINGLE_SELECT", - "MULTI_SELECT" - ] + "enum": ["TEXT", "NUMBER", "SINGLE_SELECT", "MULTI_SELECT"] }, "options": { "type": "array", @@ -25163,12 +23505,7 @@ "type": "boolean" } }, - "required": [ - "name", - "slug", - "type", - "options" - ] + "required": ["name", "slug", "type", "options"] }, "CreateOrganizationAttributesOutput": { "type": "object", @@ -25176,19 +23513,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/Attribute" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "UpdateOrganizationAttributeInput": { "type": "object", @@ -25201,12 +23532,7 @@ }, "type": { "type": "string", - "enum": [ - "TEXT", - "NUMBER", - "SINGLE_SELECT", - "MULTI_SELECT" - ] + "enum": ["TEXT", "NUMBER", "SINGLE_SELECT", "MULTI_SELECT"] }, "enabled": { "type": "boolean" @@ -25219,19 +23545,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/Attribute" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "DeleteOrganizationAttributesOutput": { "type": "object", @@ -25239,19 +23559,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/Attribute" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "OptionOutput": { "type": "object", @@ -25277,12 +23591,7 @@ "example": "option-slug" } }, - "required": [ - "id", - "attributeId", - "value", - "slug" - ] + "required": ["id", "attributeId", "value", "slug"] }, "CreateAttributeOptionOutput": { "type": "object", @@ -25290,19 +23599,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/OptionOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "DeleteAttributeOptionOutput": { "type": "object", @@ -25310,19 +23613,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/OptionOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "UpdateOrganizationAttributeOptionInput": { "type": "object", @@ -25341,19 +23638,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/OptionOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "GetAllAttributeOptionOutput": { "type": "object", @@ -25361,10 +23652,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "type": "array", @@ -25373,10 +23661,7 @@ } } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "AssignedOptionOutput": { "type": "object", @@ -25403,23 +23688,14 @@ }, "assignedUserIds": { "description": "Ids of the users assigned to the attribute option.", - "example": [ - 124, - 224 - ], + "example": [124, 224], "type": "array", "items": { "type": "string" } } }, - "required": [ - "id", - "attributeId", - "value", - "slug", - "assignedUserIds" - ] + "required": ["id", "attributeId", "value", "slug", "assignedUserIds"] }, "GetAllAttributeAssignedOptionOutput": { "type": "object", @@ -25427,10 +23703,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "type": "array", @@ -25439,10 +23712,7 @@ } } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "AssignOrganizationAttributeOptionToUserInput": { "type": "object", @@ -25457,9 +23727,7 @@ "type": "string" } }, - "required": [ - "attributeId" - ] + "required": ["attributeId"] }, "AssignOptionUserOutputData": { "type": "object", @@ -25477,11 +23745,7 @@ "description": "The value of the option" } }, - "required": [ - "id", - "memberId", - "attributeOptionId" - ] + "required": ["id", "memberId", "attributeOptionId"] }, "AssignOptionUserOutput": { "type": "object", @@ -25489,19 +23753,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/AssignOptionUserOutputData" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "UnassignOptionUserOutput": { "type": "object", @@ -25509,19 +23767,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/AssignOptionUserOutputData" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "GetOptionUserOutputData": { "type": "object", @@ -25543,12 +23795,7 @@ "description": "The slug of the option" } }, - "required": [ - "id", - "attributeId", - "value", - "slug" - ] + "required": ["id", "attributeId", "value", "slug"] }, "GetOptionUserOutput": { "type": "object", @@ -25556,10 +23803,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "type": "array", @@ -25568,10 +23812,7 @@ } } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "TeamWebhookOutputDto": { "type": "object", @@ -25603,14 +23844,7 @@ "type": "string" } }, - "required": [ - "payloadTemplate", - "teamId", - "id", - "triggers", - "subscriberUrl", - "active" - ] + "required": ["payloadTemplate", "teamId", "id", "triggers", "subscriberUrl", "active"] }, "TeamWebhooksOutputResponseDto": { "type": "object", @@ -25618,10 +23852,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "type": "array", @@ -25630,10 +23861,7 @@ } } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "CreateWebhookInputDto": { "type": "object", @@ -25690,16 +23918,10 @@ "type": "string", "description": "The version of the webhook", "example": "2021-10-20", - "enum": [ - "2021-10-20" - ] + "enum": ["2021-10-20"] } }, - "required": [ - "active", - "subscriberUrl", - "triggers" - ] + "required": ["active", "subscriberUrl", "triggers"] }, "TeamWebhookOutputResponseDto": { "type": "object", @@ -25707,19 +23929,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/TeamWebhookOutputDto" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "UpdateWebhookInputDto": { "type": "object", @@ -25776,9 +23992,7 @@ "type": "string", "description": "The version of the webhook", "example": "2021-10-20", - "enum": [ - "2021-10-20" - ] + "enum": ["2021-10-20"] } } }, @@ -25811,19 +24025,10 @@ "type": "string", "description": "the reason for the out of office entry, if applicable", "example": "vacation", - "enum": [ - "unspecified", - "vacation", - "travel", - "sick", - "public_holiday" - ] + "enum": ["unspecified", "vacation", "travel", "sick", "public_holiday"] } }, - "required": [ - "start", - "end" - ] + "required": ["start", "end"] }, "UpdateOutOfOfficeEntryDto": { "type": "object", @@ -25854,13 +24059,7 @@ "type": "string", "description": "the reason for the out of office entry, if applicable", "example": "vacation", - "enum": [ - "unspecified", - "vacation", - "travel", - "sick", - "public_holiday" - ] + "enum": ["unspecified", "vacation", "travel", "sick", "public_holiday"] } } }, @@ -25875,10 +24074,7 @@ }, "activeOnEventTypeIds": { "description": "List of Event Type IDs the workflow is specifically active on (if not active on all)", - "example": [ - 698191, - 698192 - ], + "example": [698191, 698192], "type": "array", "items": { "type": "number" @@ -25898,17 +24094,10 @@ "type": "string", "description": "Unit for the offset time", "example": "hour", - "enum": [ - "hour", - "minute", - "day" - ] + "enum": ["hour", "minute", "day"] } }, - "required": [ - "value", - "unit" - ] + "required": ["value", "unit"] }, "EventTypeWorkflowTriggerOutputDto": { "type": "object", @@ -25941,9 +24130,7 @@ ] } }, - "required": [ - "type" - ] + "required": ["type"] }, "WorkflowMessageOutputDto": { "type": "object", @@ -25964,9 +24151,7 @@ "example": "Reminder for {EVENT_NAME}." } }, - "required": [ - "subject" - ] + "required": ["subject"] }, "EventTypeWorkflowStepOutputDto": { "type": "object", @@ -25985,12 +24170,7 @@ "type": "string", "description": "Intended recipient type", "example": "const", - "enum": [ - "const", - "attendee", - "email", - "phone_number" - ] + "enum": ["const", "attendee", "email", "phone_number"] }, "email": { "type": "string", @@ -26011,14 +24191,7 @@ "type": "string", "description": "Template type used", "example": "reminder", - "enum": [ - "reminder", - "custom", - "rescheduled", - "completed", - "rating", - "cancelled" - ] + "enum": ["reminder", "custom", "rescheduled", "completed", "rating", "cancelled"] }, "includeCalendarEvent": { "type": "object", @@ -26055,15 +24228,7 @@ ] } }, - "required": [ - "id", - "stepNumber", - "recipient", - "template", - "sender", - "message", - "action" - ] + "required": ["id", "stepNumber", "recipient", "template", "sender", "message", "action"] }, "EventTypeWorkflowOutput": { "type": "object", @@ -26100,9 +24265,7 @@ }, "type": { "type": "string", - "enum": [ - "event-type" - ], + "enum": ["event-type"], "description": "type of the workflow", "example": "event-type", "default": "event-type" @@ -26131,14 +24294,7 @@ } } }, - "required": [ - "id", - "name", - "type", - "activation", - "trigger", - "steps" - ] + "required": ["id", "name", "type", "activation", "trigger", "steps"] }, "GetEventTypeWorkflowsOutput": { "type": "object", @@ -26147,10 +24303,7 @@ "type": "string", "description": "Indicates the status of the response", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "description": "List of workflows", @@ -26160,10 +24313,7 @@ } } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "RoutingFormWorkflowActivationOutputDto": { "type": "object", @@ -26176,9 +24326,7 @@ }, "activeOnRoutingFormIds": { "description": "List of Event Type IDs the workflow is specifically active on (if not active on all)", - "example": [ - "5cacdec7-1234-6e1b-78d9-7bcda8a1b332" - ], + "example": ["5cacdec7-1234-6e1b-78d9-7bcda8a1b332"], "type": "array", "items": { "type": "string" @@ -26193,10 +24341,7 @@ "type": "string", "description": "Trigger type for the workflow", "example": "formSubmitted", - "enum": [ - "formSubmitted", - "formSubmittedNoEvent" - ] + "enum": ["formSubmitted", "formSubmittedNoEvent"] }, "offset": { "description": "Offset details (present for BEFORE_EVENT/AFTER_EVENT/FORM_SUBMITTED_NO_EVENT)", @@ -26207,9 +24352,7 @@ ] } }, - "required": [ - "type" - ] + "required": ["type"] }, "RoutingFormWorkflowStepOutputDto": { "type": "object", @@ -26228,12 +24371,7 @@ "type": "string", "description": "Intended recipient type", "example": "const", - "enum": [ - "const", - "attendee", - "email", - "phone_number" - ] + "enum": ["const", "attendee", "email", "phone_number"] }, "email": { "type": "string", @@ -26254,14 +24392,7 @@ "type": "string", "description": "Template type used", "example": "reminder", - "enum": [ - "reminder", - "custom", - "rescheduled", - "completed", - "rating", - "cancelled" - ] + "enum": ["reminder", "custom", "rescheduled", "completed", "rating", "cancelled"] }, "includeCalendarEvent": { "type": "object", @@ -26286,23 +24417,10 @@ "type": "string", "description": "Action to perform", "example": "email_host", - "enum": [ - "email_attendee", - "email_address", - "sms_attendee", - "sms_number" - ] + "enum": ["email_attendee", "email_address", "sms_attendee", "sms_number"] } }, - "required": [ - "id", - "stepNumber", - "recipient", - "template", - "sender", - "message", - "action" - ] + "required": ["id", "stepNumber", "recipient", "template", "sender", "message", "action"] }, "RoutingFormWorkflowOutput": { "type": "object", @@ -26339,9 +24457,7 @@ }, "type": { "type": "string", - "enum": [ - "routing-form" - ], + "enum": ["routing-form"], "description": "type of the workflow", "example": "routing-form", "default": "routing-form" @@ -26370,14 +24486,7 @@ } } }, - "required": [ - "id", - "name", - "type", - "activation", - "trigger", - "steps" - ] + "required": ["id", "name", "type", "activation", "trigger", "steps"] }, "GetRoutingFormWorkflowsOutput": { "type": "object", @@ -26386,10 +24495,7 @@ "type": "string", "description": "Indicates the status of the response", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "description": "List of workflows", @@ -26399,10 +24505,7 @@ } } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "GetEventTypeWorkflowOutput": { "type": "object", @@ -26411,10 +24514,7 @@ "type": "string", "description": "Indicates the status of the response", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "description": "workflow", @@ -26424,10 +24524,7 @@ } } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "GetRoutingFormWorkflowOutput": { "type": "object", @@ -26436,10 +24533,7 @@ "type": "string", "description": "Indicates the status of the response", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "description": "workflow", @@ -26449,10 +24543,7 @@ } } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "WorkflowTriggerOffsetDto": { "type": "object", @@ -26464,19 +24555,12 @@ }, "unit": { "type": "object", - "enum": [ - "hour", - "minute", - "day" - ], + "enum": ["hour", "minute", "day"], "description": "Unit for the offset time", "example": "hour" } }, - "required": [ - "value", - "unit" - ] + "required": ["value", "unit"] }, "OnBeforeEventTriggerDto": { "type": "object", @@ -26492,17 +24576,12 @@ "type": { "type": "string", "default": "beforeEvent", - "enum": [ - "beforeEvent" - ], + "enum": ["beforeEvent"], "description": "Trigger type for the workflow", "example": "beforeEvent" } }, - "required": [ - "offset", - "type" - ] + "required": ["offset", "type"] }, "OnAfterEventTriggerDto": { "type": "object", @@ -26518,17 +24597,12 @@ "type": { "type": "string", "default": "afterEvent", - "enum": [ - "afterEvent" - ], + "enum": ["afterEvent"], "description": "Trigger type for the workflow", "example": "afterEvent" } }, - "required": [ - "offset", - "type" - ] + "required": ["offset", "type"] }, "OnCancelTriggerDto": { "type": "object", @@ -26536,15 +24610,11 @@ "type": { "type": "string", "default": "eventCancelled", - "enum": [ - "eventCancelled" - ], + "enum": ["eventCancelled"], "description": "Trigger type for the workflow" } }, - "required": [ - "type" - ] + "required": ["type"] }, "OnCreationTriggerDto": { "type": "object", @@ -26552,15 +24622,11 @@ "type": { "type": "string", "default": "newEvent", - "enum": [ - "newEvent" - ], + "enum": ["newEvent"], "description": "Trigger type for the workflow" } }, - "required": [ - "type" - ] + "required": ["type"] }, "OnRescheduleTriggerDto": { "type": "object", @@ -26568,15 +24634,11 @@ "type": { "type": "string", "default": "rescheduleEvent", - "enum": [ - "rescheduleEvent" - ], + "enum": ["rescheduleEvent"], "description": "Trigger type for the workflow" } }, - "required": [ - "type" - ] + "required": ["type"] }, "OnNoShowUpdateTriggerDto": { "type": "object", @@ -26587,9 +24649,7 @@ "description": "Trigger type for the workflow" } }, - "required": [ - "type" - ] + "required": ["type"] }, "OnRejectedTriggerDto": { "type": "object", @@ -26600,9 +24660,7 @@ "description": "Trigger type for the workflow" } }, - "required": [ - "type" - ] + "required": ["type"] }, "OnRequestedTriggerDto": { "type": "object", @@ -26613,9 +24671,7 @@ "description": "Trigger type for the workflow" } }, - "required": [ - "type" - ] + "required": ["type"] }, "OnPaymentInitiatedTriggerDto": { "type": "object", @@ -26626,9 +24682,7 @@ "description": "Trigger type for the workflow" } }, - "required": [ - "type" - ] + "required": ["type"] }, "OnPaidTriggerDto": { "type": "object", @@ -26639,9 +24693,7 @@ "description": "Trigger type for the workflow" } }, - "required": [ - "type" - ] + "required": ["type"] }, "OnAfterCalVideoGuestsNoShowTriggerDto": { "type": "object", @@ -26657,17 +24709,12 @@ "type": { "type": "string", "default": "afterGuestsCalVideoNoShow", - "enum": [ - "afterGuestsCalVideoNoShow" - ], + "enum": ["afterGuestsCalVideoNoShow"], "description": "Trigger type for the workflow", "example": "afterGuestsCalVideoNoShow" } }, - "required": [ - "offset", - "type" - ] + "required": ["offset", "type"] }, "OnAfterCalVideoHostsNoShowTriggerDto": { "type": "object", @@ -26683,17 +24730,12 @@ "type": { "type": "string", "default": "afterHostsCalVideoNoShow", - "enum": [ - "afterHostsCalVideoNoShow" - ], + "enum": ["afterHostsCalVideoNoShow"], "description": "Trigger type for the workflow", "example": "afterHostsCalVideoNoShow" } }, - "required": [ - "offset", - "type" - ] + "required": ["offset", "type"] }, "HtmlWorkflowMessageDto": { "type": "object", @@ -26709,10 +24751,7 @@ "example": "
This is a reminder from {ORGANIZER} of {EVENT_NAME} to {ATTENDEE} starting here {LOCATION} {MEETING_URL} at {START_TIME_h:mma} {TIMEZONE}.
" } }, - "required": [ - "subject", - "html" - ] + "required": ["subject", "html"] }, "WorkflowEmailAddressStepDto": { "type": "object", @@ -26742,25 +24781,13 @@ "type": "string", "description": "Recipient type", "example": "attendee", - "enum": [ - "const", - "attendee", - "email", - "phone_number" - ] + "enum": ["const", "attendee", "email", "phone_number"] }, "template": { "type": "string", "description": "Template type for the step", "example": "reminder", - "enum": [ - "reminder", - "custom", - "rescheduled", - "completed", - "rating", - "cancelled" - ] + "enum": ["reminder", "custom", "rescheduled", "completed", "rating", "cancelled"] }, "sender": { "type": "string", @@ -26828,25 +24855,13 @@ "type": "string", "description": "Recipient type", "example": "attendee", - "enum": [ - "const", - "attendee", - "email", - "phone_number" - ] + "enum": ["const", "attendee", "email", "phone_number"] }, "template": { "type": "string", "description": "Template type for the step", "example": "reminder", - "enum": [ - "reminder", - "custom", - "rescheduled", - "completed", - "rating", - "cancelled" - ] + "enum": ["reminder", "custom", "rescheduled", "completed", "rating", "cancelled"] }, "sender": { "type": "string", @@ -26905,25 +24920,13 @@ "type": "string", "description": "Recipient type", "example": "attendee", - "enum": [ - "const", - "attendee", - "email", - "phone_number" - ] + "enum": ["const", "attendee", "email", "phone_number"] }, "template": { "type": "string", "description": "Template type for the step", "example": "reminder", - "enum": [ - "reminder", - "custom", - "rescheduled", - "completed", - "rating", - "cancelled" - ] + "enum": ["reminder", "custom", "rescheduled", "completed", "rating", "cancelled"] }, "sender": { "type": "string", @@ -26968,10 +24971,7 @@ "example": "This is a reminder message from {ORGANIZER} of {EVENT_NAME} to {ATTENDEE} starting here {LOCATION} {MEETING_URL} at {START_TIME_h:mma} {TIMEZONE}." } }, - "required": [ - "subject", - "text" - ] + "required": ["subject", "text"] }, "WorkflowPhoneWhatsAppAttendeeStepDto": { "type": "object", @@ -27001,25 +25001,13 @@ "type": "string", "description": "Recipient type", "example": "attendee", - "enum": [ - "const", - "attendee", - "email", - "phone_number" - ] + "enum": ["const", "attendee", "email", "phone_number"] }, "template": { "type": "string", "description": "Template type for the step", "example": "reminder", - "enum": [ - "reminder", - "custom", - "rescheduled", - "completed", - "rating", - "cancelled" - ] + "enum": ["reminder", "custom", "rescheduled", "completed", "rating", "cancelled"] }, "sender": { "type": "string", @@ -27040,14 +25028,7 @@ "example": true } }, - "required": [ - "action", - "stepNumber", - "recipient", - "template", - "sender", - "message" - ] + "required": ["action", "stepNumber", "recipient", "template", "sender", "message"] }, "WorkflowPhoneWhatsAppNumberStepDto": { "type": "object", @@ -27077,25 +25058,13 @@ "type": "string", "description": "Recipient type", "example": "attendee", - "enum": [ - "const", - "attendee", - "email", - "phone_number" - ] + "enum": ["const", "attendee", "email", "phone_number"] }, "template": { "type": "string", "description": "Template type for the step", "example": "reminder", - "enum": [ - "reminder", - "custom", - "rescheduled", - "completed", - "rating", - "cancelled" - ] + "enum": ["reminder", "custom", "rescheduled", "completed", "rating", "cancelled"] }, "sender": { "type": "string", @@ -27118,15 +25087,7 @@ ] } }, - "required": [ - "action", - "stepNumber", - "recipient", - "template", - "sender", - "verifiedPhoneId", - "message" - ] + "required": ["action", "stepNumber", "recipient", "template", "sender", "verifiedPhoneId", "message"] }, "WorkflowPhoneNumberStepDto": { "type": "object", @@ -27156,25 +25117,13 @@ "type": "string", "description": "Recipient type", "example": "attendee", - "enum": [ - "const", - "attendee", - "email", - "phone_number" - ] + "enum": ["const", "attendee", "email", "phone_number"] }, "template": { "type": "string", "description": "Template type for the step", "example": "reminder", - "enum": [ - "reminder", - "custom", - "rescheduled", - "completed", - "rating", - "cancelled" - ] + "enum": ["reminder", "custom", "rescheduled", "completed", "rating", "cancelled"] }, "sender": { "type": "string", @@ -27197,15 +25146,7 @@ ] } }, - "required": [ - "action", - "stepNumber", - "recipient", - "template", - "sender", - "verifiedPhoneId", - "message" - ] + "required": ["action", "stepNumber", "recipient", "template", "sender", "verifiedPhoneId", "message"] }, "WorkflowPhoneAttendeeStepDto": { "type": "object", @@ -27235,25 +25176,13 @@ "type": "string", "description": "Recipient type", "example": "attendee", - "enum": [ - "const", - "attendee", - "email", - "phone_number" - ] + "enum": ["const", "attendee", "email", "phone_number"] }, "template": { "type": "string", "description": "Template type for the step", "example": "reminder", - "enum": [ - "reminder", - "custom", - "rescheduled", - "completed", - "rating", - "cancelled" - ] + "enum": ["reminder", "custom", "rescheduled", "completed", "rating", "cancelled"] }, "sender": { "type": "string", @@ -27278,14 +25207,7 @@ "example": true } }, - "required": [ - "action", - "stepNumber", - "recipient", - "template", - "sender", - "message" - ] + "required": ["action", "stepNumber", "recipient", "template", "sender", "message"] }, "EventTypeWorkflowTriggerDto": { "type": "object", @@ -27310,9 +25232,7 @@ "example": "beforeEvent" } }, - "required": [ - "type" - ] + "required": ["type"] }, "WorkflowActivationDto": { "type": "object", @@ -27326,18 +25246,14 @@ "activeOnEventTypeIds": { "default": [], "description": "List of event-types IDs the workflow applies to, required if isActiveOnAllEventTypes is false", - "example": [ - 698191 - ], + "example": [698191], "type": "array", "items": { "type": "number" } } }, - "required": [ - "isActiveOnAllEventTypes" - ] + "required": ["isActiveOnAllEventTypes"] }, "CreateEventTypeWorkflowDto": { "type": "object", @@ -27426,12 +25342,7 @@ } } }, - "required": [ - "name", - "activation", - "trigger", - "steps" - ] + "required": ["name", "activation", "trigger", "steps"] }, "OnFormSubmittedTriggerDto": { "type": "object", @@ -27439,16 +25350,12 @@ "type": { "type": "string", "default": "formSubmitted", - "enum": [ - "formSubmitted" - ], + "enum": ["formSubmitted"], "description": "Trigger type for the workflow", "example": "formSubmitted" } }, - "required": [ - "type" - ] + "required": ["type"] }, "OnFormSubmittedNoEventTriggerDto": { "type": "object", @@ -27464,34 +25371,24 @@ "type": { "type": "string", "default": "formSubmittedNoEvent", - "enum": [ - "formSubmittedNoEvent" - ], + "enum": ["formSubmittedNoEvent"], "description": "Trigger type for the workflow", "example": "formSubmittedNoEvent" } }, - "required": [ - "offset", - "type" - ] + "required": ["offset", "type"] }, "RoutingFormWorkflowTriggerDto": { "type": "object", "properties": { "type": { "type": "object", - "enum": [ - "formSubmitted", - "formSubmittedNoEvent" - ], + "enum": ["formSubmitted", "formSubmittedNoEvent"], "description": "Trigger type for the routing-form workflow", "example": "formSubmitted" } }, - "required": [ - "type" - ] + "required": ["type"] }, "WorkflowFormActivationDto": { "type": "object", @@ -27503,18 +25400,14 @@ }, "activeOnRoutingFormIds": { "description": "List of routing form IDs the workflow applies to", - "example": [ - "abd1-123edf-a213d-123dfwf" - ], + "example": ["abd1-123edf-a213d-123dfwf"], "type": "array", "items": { "type": "number" } } }, - "required": [ - "isActiveOnAllRoutingForms" - ] + "required": ["isActiveOnAllRoutingForms"] }, "CreateFormWorkflowDto": { "type": "object", @@ -27564,12 +25457,7 @@ } } }, - "required": [ - "name", - "activation", - "trigger", - "steps" - ] + "required": ["name", "activation", "trigger", "steps"] }, "UpdateEmailAddressWorkflowStepDto": { "type": "object", @@ -27599,25 +25487,13 @@ "type": "string", "description": "Recipient type", "example": "attendee", - "enum": [ - "const", - "attendee", - "email", - "phone_number" - ] + "enum": ["const", "attendee", "email", "phone_number"] }, "template": { "type": "string", "description": "Template type for the step", "example": "reminder", - "enum": [ - "reminder", - "custom", - "rescheduled", - "completed", - "rating", - "cancelled" - ] + "enum": ["reminder", "custom", "rescheduled", "completed", "rating", "cancelled"] }, "sender": { "type": "string", @@ -27690,25 +25566,13 @@ "type": "string", "description": "Recipient type", "example": "attendee", - "enum": [ - "const", - "attendee", - "email", - "phone_number" - ] + "enum": ["const", "attendee", "email", "phone_number"] }, "template": { "type": "string", "description": "Template type for the step", "example": "reminder", - "enum": [ - "reminder", - "custom", - "rescheduled", - "completed", - "rating", - "cancelled" - ] + "enum": ["reminder", "custom", "rescheduled", "completed", "rating", "cancelled"] }, "sender": { "type": "string", @@ -27772,25 +25636,13 @@ "type": "string", "description": "Recipient type", "example": "attendee", - "enum": [ - "const", - "attendee", - "email", - "phone_number" - ] + "enum": ["const", "attendee", "email", "phone_number"] }, "template": { "type": "string", "description": "Template type for the step", "example": "reminder", - "enum": [ - "reminder", - "custom", - "rescheduled", - "completed", - "rating", - "cancelled" - ] + "enum": ["reminder", "custom", "rescheduled", "completed", "rating", "cancelled"] }, "sender": { "type": "string", @@ -27854,25 +25706,13 @@ "type": "string", "description": "Recipient type", "example": "attendee", - "enum": [ - "const", - "attendee", - "email", - "phone_number" - ] + "enum": ["const", "attendee", "email", "phone_number"] }, "template": { "type": "string", "description": "Template type for the step", "example": "reminder", - "enum": [ - "reminder", - "custom", - "rescheduled", - "completed", - "rating", - "cancelled" - ] + "enum": ["reminder", "custom", "rescheduled", "completed", "rating", "cancelled"] }, "sender": { "type": "string", @@ -27902,14 +25742,7 @@ "example": 67244 } }, - "required": [ - "action", - "stepNumber", - "recipient", - "template", - "sender", - "message" - ] + "required": ["action", "stepNumber", "recipient", "template", "sender", "message"] }, "UpdatePhoneWhatsAppNumberWorkflowStepDto": { "type": "object", @@ -27939,25 +25772,13 @@ "type": "string", "description": "Recipient type", "example": "attendee", - "enum": [ - "const", - "attendee", - "email", - "phone_number" - ] + "enum": ["const", "attendee", "email", "phone_number"] }, "template": { "type": "string", "description": "Template type for the step", "example": "reminder", - "enum": [ - "reminder", - "custom", - "rescheduled", - "completed", - "rating", - "cancelled" - ] + "enum": ["reminder", "custom", "rescheduled", "completed", "rating", "cancelled"] }, "sender": { "type": "string", @@ -27985,15 +25806,7 @@ "example": 67244 } }, - "required": [ - "action", - "stepNumber", - "recipient", - "template", - "sender", - "verifiedPhoneId", - "message" - ] + "required": ["action", "stepNumber", "recipient", "template", "sender", "verifiedPhoneId", "message"] }, "UpdateWhatsAppAttendeePhoneWorkflowStepDto": { "type": "object", @@ -28023,25 +25836,13 @@ "type": "string", "description": "Recipient type", "example": "attendee", - "enum": [ - "const", - "attendee", - "email", - "phone_number" - ] + "enum": ["const", "attendee", "email", "phone_number"] }, "template": { "type": "string", "description": "Template type for the step", "example": "reminder", - "enum": [ - "reminder", - "custom", - "rescheduled", - "completed", - "rating", - "cancelled" - ] + "enum": ["reminder", "custom", "rescheduled", "completed", "rating", "cancelled"] }, "sender": { "type": "string", @@ -28067,14 +25868,7 @@ "example": 67244 } }, - "required": [ - "action", - "stepNumber", - "recipient", - "template", - "sender", - "message" - ] + "required": ["action", "stepNumber", "recipient", "template", "sender", "message"] }, "UpdatePhoneNumberWorkflowStepDto": { "type": "object", @@ -28104,25 +25898,13 @@ "type": "string", "description": "Recipient type", "example": "attendee", - "enum": [ - "const", - "attendee", - "email", - "phone_number" - ] + "enum": ["const", "attendee", "email", "phone_number"] }, "template": { "type": "string", "description": "Template type for the step", "example": "reminder", - "enum": [ - "reminder", - "custom", - "rescheduled", - "completed", - "rating", - "cancelled" - ] + "enum": ["reminder", "custom", "rescheduled", "completed", "rating", "cancelled"] }, "sender": { "type": "string", @@ -28150,15 +25932,7 @@ "example": 67244 } }, - "required": [ - "action", - "stepNumber", - "recipient", - "template", - "sender", - "verifiedPhoneId", - "message" - ] + "required": ["action", "stepNumber", "recipient", "template", "sender", "verifiedPhoneId", "message"] }, "UpdateEventTypeWorkflowDto": { "type": "object", @@ -28341,13 +26115,7 @@ "example": "2025-12-31T23:59:59.000Z" } }, - "required": [ - "linkId", - "eventTypeId", - "isExpired", - "bookingUrl", - "expiresAt" - ] + "required": ["linkId", "eventTypeId", "isExpired", "bookingUrl", "expiresAt"] }, "UsageBasedPrivateLinkOutput": { "type": "object", @@ -28384,14 +26152,7 @@ "example": 3 } }, - "required": [ - "linkId", - "eventTypeId", - "isExpired", - "bookingUrl", - "maxUsageCount", - "usageCount" - ] + "required": ["linkId", "eventTypeId", "isExpired", "bookingUrl", "maxUsageCount", "usageCount"] }, "CreatePrivateLinkOutput": { "type": "object", @@ -28413,10 +26174,7 @@ ] } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "GetPrivateLinksOutput": { "type": "object", @@ -28441,10 +26199,7 @@ } } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "UpdatePrivateLinkOutput": { "type": "object", @@ -28466,10 +26221,7 @@ ] } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "DeletePrivateLinkOutput": { "type": "object", @@ -28494,10 +26246,7 @@ } } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "GetDefaultScheduleOutput_2024_06_11": { "type": "object", @@ -28505,19 +26254,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/ScheduleOutput_2024_06_11" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "CreateTeamInput": { "type": "object", @@ -28601,9 +26344,7 @@ "description": "If you are a platform customer, don't pass 'false', because then team creator won't be able to create team event types." } }, - "required": [ - "name" - ] + "required": ["name"] }, "TeamOutputDto": { "type": "object", @@ -28677,11 +26418,7 @@ "default": "Sunday" } }, - "required": [ - "id", - "name", - "isOrganization" - ] + "required": ["id", "name", "isOrganization"] }, "CreateTeamOutputData": { "type": "object", @@ -28696,11 +26433,7 @@ "$ref": "#/components/schemas/TeamOutputDto" } }, - "required": [ - "message", - "paymentLink", - "pendingTeam" - ] + "required": ["message", "paymentLink", "pendingTeam"] }, "CreateTeamOutput": { "type": "object", @@ -28708,10 +26441,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "oneOf": [ @@ -28725,10 +26455,7 @@ "description": "Either an Output object or a TeamOutputDto." } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "GetTeamOutput": { "type": "object", @@ -28736,19 +26463,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/TeamOutputDto" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "GetTeamsOutput": { "type": "object", @@ -28756,10 +26477,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "type": "array", @@ -28768,10 +26486,7 @@ } } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "UpdateTeamOutput": { "type": "object", @@ -28779,19 +26494,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/TeamOutputDto" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "ConferencingAppsOutputDto": { "type": "object", @@ -28816,30 +26525,20 @@ "description": "Whether if the connection is working or not." } }, - "required": [ - "id", - "type", - "userId" - ] + "required": ["id", "type", "userId"] }, "ConferencingAppOutputResponseDto": { "type": "object", "properties": { "status": { "type": "string", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/ConferencingAppsOutputDto" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "GetConferencingAppsOauthUrlResponseDto": { "type": "object", @@ -28847,25 +26546,17 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] } }, - "required": [ - "status" - ] + "required": ["status"] }, "ConferencingAppsOutputResponseDto": { "type": "object", "properties": { "status": { "type": "string", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "type": "array", @@ -28874,10 +26565,7 @@ } } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "SetDefaultConferencingAppOutputResponseDto": { "type": "object", @@ -28885,15 +26573,10 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] } }, - "required": [ - "status" - ] + "required": ["status"] }, "DefaultConferencingAppsOutputDto": { "type": "object", @@ -28912,18 +26595,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/DefaultConferencingAppsOutputDto" } }, - "required": [ - "status" - ] + "required": ["status"] }, "DisconnectConferencingAppOutputResponseDto": { "type": "object", @@ -28931,15 +26609,10 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] } }, - "required": [ - "status" - ] + "required": ["status"] }, "GoogleServiceAccountKeyInput": { "type": "object", @@ -28954,11 +26627,7 @@ "type": "string" } }, - "required": [ - "private_key", - "client_email", - "client_id" - ] + "required": ["private_key", "client_email", "client_id"] }, "MicrosoftServiceAccountKeyInput": { "type": "object", @@ -28973,11 +26642,7 @@ "type": "string" } }, - "required": [ - "private_key", - "tenant_id", - "client_id" - ] + "required": ["private_key", "tenant_id", "client_id"] }, "CreateDelegationCredentialInput": { "type": "object", @@ -29002,11 +26667,7 @@ } } }, - "required": [ - "workspacePlatformSlug", - "domain", - "serviceAccountKey" - ] + "required": ["workspacePlatformSlug", "domain", "serviceAccountKey"] }, "WorkspacePlatformDto": { "type": "object", @@ -29018,10 +26679,7 @@ "type": "string" } }, - "required": [ - "name", - "slug" - ] + "required": ["name", "slug"] }, "DelegationCredentialOutput": { "type": "object", @@ -29066,19 +26724,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/DelegationCredentialOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "UpdateDelegationCredentialInput": { "type": "object", @@ -29107,29 +26759,20 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/DelegationCredentialOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "CreateIcsFeedInputDto": { "type": "object", "properties": { "urls": { "type": "array", - "example": [ - "https://cal.com/ics/feed.ics", - "http://cal.com/ics/feed.ics" - ], + "example": ["https://cal.com/ics/feed.ics", "http://cal.com/ics/feed.ics"], "description": "An array of ICS URLs", "items": { "type": "string", @@ -29143,9 +26786,7 @@ "description": "Whether to allowing writing to the calendar or not" } }, - "required": [ - "urls" - ] + "required": ["urls"] }, "CreateIcsFeedOutput": { "type": "object", @@ -29185,14 +26826,7 @@ "description": "Whether the calendar credentials are valid or not" } }, - "required": [ - "id", - "type", - "userId", - "teamId", - "appId", - "invalid" - ] + "required": ["id", "type", "userId", "teamId", "appId", "invalid"] }, "CreateIcsFeedOutputResponseDto": { "type": "object", @@ -29200,19 +26834,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/CreateIcsFeedOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "BusyTimesOutput": { "type": "object", @@ -29230,10 +26858,7 @@ "nullable": true } }, - "required": [ - "start", - "end" - ] + "required": ["start", "end"] }, "GetBusyTimesOutput": { "type": "object", @@ -29241,10 +26866,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "type": "array", @@ -29253,10 +26875,7 @@ } } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "Integration": { "type": "object", @@ -29365,13 +26984,7 @@ "nullable": true } }, - "required": [ - "externalId", - "primary", - "readOnly", - "isSelected", - "credentialId" - ] + "required": ["externalId", "primary", "readOnly", "isSelected", "credentialId"] }, "Calendar": { "type": "object", @@ -29406,12 +27019,7 @@ "nullable": true } }, - "required": [ - "externalId", - "readOnly", - "isSelected", - "credentialId" - ] + "required": ["externalId", "readOnly", "isSelected", "credentialId"] }, "ConnectedCalendar": { "type": "object", @@ -29436,10 +27044,7 @@ } } }, - "required": [ - "integration", - "credentialId" - ] + "required": ["integration", "credentialId"] }, "DestinationCalendar": { "type": "object", @@ -29513,10 +27118,7 @@ "$ref": "#/components/schemas/DestinationCalendar" } }, - "required": [ - "connectedCalendars", - "destinationCalendar" - ] + "required": ["connectedCalendars", "destinationCalendar"] }, "ConnectedCalendarsOutput": { "type": "object", @@ -29524,19 +27126,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/ConnectedCalendarsData" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "CreateCalendarCredentialsInput": { "type": "object", @@ -29548,10 +27144,7 @@ "type": "string" } }, - "required": [ - "username", - "password" - ] + "required": ["username", "password"] }, "DeleteCalendarCredentialsInputBodyDto": { "type": "object", @@ -29562,9 +27155,7 @@ "description": "Credential ID of the calendar to delete, as returned by the /calendars endpoint" } }, - "required": [ - "id" - ] + "required": ["id"] }, "DeletedCalendarCredentialsOutputDto": { "type": "object", @@ -29592,14 +27183,7 @@ "nullable": true } }, - "required": [ - "id", - "type", - "userId", - "teamId", - "appId", - "invalid" - ] + "required": ["id", "type", "userId", "teamId", "appId", "invalid"] }, "DeletedCalendarCredentialsOutputResponseDto": { "type": "object", @@ -29607,19 +27191,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/DeletedCalendarCredentialsOutputDto" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "CreateOrganizationInput": { "type": "object", @@ -29655,9 +27233,7 @@ } } }, - "required": [ - "name" - ] + "required": ["name"] }, "ManagedOrganizationWithApiKeyOutput": { "type": "object", @@ -29682,11 +27258,7 @@ "type": "string" } }, - "required": [ - "id", - "name", - "apiKey" - ] + "required": ["id", "name", "apiKey"] }, "CreateManagedOrganizationOutput": { "type": "object", @@ -29694,19 +27266,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/ManagedOrganizationWithApiKeyOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "ManagedOrganizationOutput": { "type": "object", @@ -29728,10 +27294,7 @@ } } }, - "required": [ - "id", - "name" - ] + "required": ["id", "name"] }, "GetManagedOrganizationOutput": { "type": "object", @@ -29739,19 +27302,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/ManagedOrganizationOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "PaginationMetaDto": { "type": "object", @@ -29819,10 +27376,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "type": "array", @@ -29834,11 +27388,7 @@ "$ref": "#/components/schemas/PaginationMetaDto" } }, - "required": [ - "status", - "data", - "pagination" - ] + "required": ["status", "data", "pagination"] }, "UpdateOrganizationInput": { "type": "object", @@ -29872,11 +27422,7 @@ "permissions": { "type": "array", "description": "Permissions for this role (format: resource.action). On update, this field replaces the entire permission set for the role (full replace). Use granular permission endpoints for one-by-one changes.", - "example": [ - "eventType.read", - "eventType.create", - "booking.read" - ], + "example": ["eventType.read", "eventType.create", "booking.read"], "items": { "type": "string", "enum": [ @@ -29947,9 +27493,7 @@ "description": "Name of the role" } }, - "required": [ - "name" - ] + "required": ["name"] }, "OrgRoleOutput": { "type": "object", @@ -29980,18 +27524,12 @@ "type": { "type": "string", "description": "Type of role", - "enum": [ - "SYSTEM", - "CUSTOM" - ] + "enum": ["SYSTEM", "CUSTOM"] }, "permissions": { "type": "array", "description": "Permissions assigned to this role in 'resource.action' format.", - "example": [ - "booking.read", - "eventType.create" - ], + "example": ["booking.read", "eventType.create"], "items": { "type": "string", "enum": [ @@ -30065,14 +27603,7 @@ "description": "When the role was last updated" } }, - "required": [ - "id", - "name", - "type", - "permissions", - "createdAt", - "updatedAt" - ] + "required": ["id", "name", "type", "permissions", "createdAt", "updatedAt"] }, "CreateOrgRoleOutput": { "type": "object", @@ -30080,19 +27611,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/OrgRoleOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "GetOrgRoleOutput": { "type": "object", @@ -30100,19 +27625,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/OrgRoleOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "GetAllOrgRolesOutput": { "type": "object", @@ -30120,10 +27639,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "type": "array", @@ -30132,10 +27648,7 @@ } } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "UpdateOrgRoleInput": { "type": "object", @@ -30151,11 +27664,7 @@ "permissions": { "type": "array", "description": "Permissions for this role (format: resource.action). On update, this field replaces the entire permission set for the role (full replace). Use granular permission endpoints for one-by-one changes.", - "example": [ - "eventType.read", - "eventType.create", - "booking.read" - ], + "example": ["eventType.read", "eventType.create", "booking.read"], "items": { "type": "string", "enum": [ @@ -30233,19 +27742,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/OrgRoleOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "DeleteOrgRoleOutput": { "type": "object", @@ -30253,19 +27756,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/OrgRoleOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "CreateOrgRolePermissionsInput": { "type": "object", @@ -30273,10 +27770,7 @@ "permissions": { "type": "array", "description": "Permissions to add (format: resource.action)", - "example": [ - "eventType.read", - "booking.read" - ], + "example": ["eventType.read", "booking.read"], "items": { "type": "string", "enum": [ @@ -30342,9 +27836,7 @@ } } }, - "required": [ - "permissions" - ] + "required": ["permissions"] }, "GetOrgRolePermissionsOutput": { "type": "object", @@ -30360,10 +27852,7 @@ } } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "CreateTeamRoleInput": { "type": "object", @@ -30379,11 +27868,7 @@ "permissions": { "type": "array", "description": "Permissions for this role (format: resource.action). On update, this field replaces the entire permission set for the role (full replace). Use granular permission endpoints for one-by-one changes.", - "example": [ - "eventType.read", - "eventType.create", - "booking.read" - ], + "example": ["eventType.read", "eventType.create", "booking.read"], "items": { "type": "string", "enum": [ @@ -30433,9 +27918,7 @@ "description": "Name of the role" } }, - "required": [ - "name" - ] + "required": ["name"] }, "TeamRoleOutput": { "type": "object", @@ -30466,18 +27949,12 @@ "type": { "type": "string", "description": "Type of role", - "enum": [ - "SYSTEM", - "CUSTOM" - ] + "enum": ["SYSTEM", "CUSTOM"] }, "permissions": { "type": "array", "description": "Permissions assigned to this role in 'resource.action' format.", - "example": [ - "booking.read", - "eventType.create" - ], + "example": ["booking.read", "eventType.create"], "items": { "type": "string", "enum": [ @@ -30530,14 +28007,7 @@ "description": "When the role was last updated" } }, - "required": [ - "id", - "name", - "type", - "permissions", - "createdAt", - "updatedAt" - ] + "required": ["id", "name", "type", "permissions", "createdAt", "updatedAt"] }, "CreateTeamRoleOutput": { "type": "object", @@ -30545,19 +28015,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/TeamRoleOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "GetTeamRoleOutput": { "type": "object", @@ -30565,19 +28029,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/TeamRoleOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "GetAllTeamRolesOutput": { "type": "object", @@ -30585,10 +28043,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "type": "array", @@ -30597,10 +28052,7 @@ } } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "UpdateTeamRoleInput": { "type": "object", @@ -30616,11 +28068,7 @@ "permissions": { "type": "array", "description": "Permissions for this role (format: resource.action). On update, this field replaces the entire permission set for the role (full replace). Use granular permission endpoints for one-by-one changes.", - "example": [ - "eventType.read", - "eventType.create", - "booking.read" - ], + "example": ["eventType.read", "eventType.create", "booking.read"], "items": { "type": "string", "enum": [ @@ -30677,19 +28125,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/TeamRoleOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "DeleteTeamRoleOutput": { "type": "object", @@ -30697,19 +28139,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/TeamRoleOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "CreateTeamRolePermissionsInput": { "type": "object", @@ -30717,10 +28153,7 @@ "permissions": { "type": "array", "description": "Permissions to add (format: resource.action)", - "example": [ - "eventType.read", - "booking.read" - ], + "example": ["eventType.read", "booking.read"], "items": { "type": "string", "enum": [ @@ -30765,9 +28198,7 @@ } } }, - "required": [ - "permissions" - ] + "required": ["permissions"] }, "GetTeamRolePermissionsOutput": { "type": "object", @@ -30783,10 +28214,7 @@ } } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "RoutingFormResponseOutput": { "type": "object", @@ -30817,14 +28245,7 @@ "type": "string" } }, - "required": [ - "id", - "formId", - "formFillerId", - "routedToBookingUid", - "response", - "createdAt" - ] + "required": ["id", "formId", "formFillerId", "routedToBookingUid", "response", "createdAt"] }, "GetRoutingFormResponsesOutput": { "type": "object", @@ -30832,19 +28253,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/RoutingFormResponseOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "SlotsOutput_2024_09_04": { "type": "object", @@ -30871,10 +28286,7 @@ }, "teamMemberIds": { "description": "Array of team member IDs that were routed to handle this booking.", - "example": [ - 101, - 102 - ], + "example": [101, 102], "type": "array", "items": { "type": "number" @@ -30901,9 +28313,7 @@ "example": "Account" } }, - "required": [ - "teamMemberIds" - ] + "required": ["teamMemberIds"] }, "CreateRoutingFormResponseOutputData": { "type": "object", @@ -30918,10 +28328,7 @@ "example": { "eventTypeId": 123, "routing": { - "teamMemberIds": [ - 101, - 102 - ], + "teamMemberIds": [101, 102], "teamMemberEmail": "john.doe@example.com", "skipContactOwner": true } @@ -30960,19 +28367,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/CreateRoutingFormResponseOutputData" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "UpdateRoutingFormResponseInput": { "type": "object", @@ -30989,19 +28390,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/RoutingFormResponseOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "RoutingFormOutput": { "type": "object", @@ -31077,10 +28472,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "type": "array", @@ -31089,10 +28481,7 @@ } } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "ResponseSlotsOutputData": { "type": "object", @@ -31111,10 +28500,7 @@ ] } }, - "required": [ - "eventTypeId", - "slots" - ] + "required": ["eventTypeId", "slots"] }, "ResponseSlotsOutput": { "type": "object", @@ -31122,19 +28508,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/ResponseSlotsOutputData" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "ReserveSlotInput_2024_09_04": { "type": "object", @@ -31160,10 +28540,7 @@ "description": "ONLY for authenticated requests with api key, access token or OAuth credentials (ID + secret).\n \n For how many minutes the slot should be reserved - for this long time noone else can book this event type at `start` time. If not provided, defaults to 5 minutes." } }, - "required": [ - "eventTypeId", - "slotStart" - ] + "required": ["eventTypeId", "slotStart"] }, "ReserveSlotOutput_2024_09_04": { "type": "object", @@ -31220,19 +28597,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/ReserveSlotOutput_2024_09_04" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "GetReservedSlotOutput_2024_09_04": { "type": "object", @@ -31240,10 +28611,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "nullable": true, @@ -31254,10 +28622,7 @@ ] } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "UpdatePrivateLinkBody": { "type": "object", @@ -31286,10 +28651,7 @@ "type": "number" } }, - "required": [ - "isPlatform", - "id" - ] + "required": ["isPlatform", "id"] }, "MeOutput": { "type": "object", @@ -31356,19 +28718,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/MeOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "UpdateMeOutput": { "type": "object", @@ -31376,19 +28732,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/MeOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "BookingInputAddressLocation_2024_08_13": { "type": "object", @@ -31399,9 +28749,7 @@ "description": "only allowed value for type is `address` - it refers to address defined by the organizer." } }, - "required": [ - "type" - ] + "required": ["type"] }, "BookingInputAttendeeAddressLocation_2024_08_13": { "type": "object", @@ -31416,10 +28764,7 @@ "example": "123 Example St, City, Country" } }, - "required": [ - "type", - "address" - ] + "required": ["type", "address"] }, "BookingInputAttendeeDefinedLocation_2024_08_13": { "type": "object", @@ -31434,10 +28779,7 @@ "example": "321 Example St, City, Country" } }, - "required": [ - "type", - "location" - ] + "required": ["type", "location"] }, "BookingInputAttendeePhoneLocation_2024_08_13": { "type": "object", @@ -31452,10 +28794,7 @@ "example": "+37120993151" } }, - "required": [ - "type", - "phone" - ] + "required": ["type", "phone"] }, "BookingInputIntegrationLocation_2024_08_13": { "type": "object", @@ -31501,10 +28840,7 @@ ] } }, - "required": [ - "type", - "integration" - ] + "required": ["type", "integration"] }, "BookingInputLinkLocation_2024_08_13": { "type": "object", @@ -31515,9 +28851,7 @@ "description": "only allowed value for type is `link` - it refers to link defined by the organizer." } }, - "required": [ - "type" - ] + "required": ["type"] }, "BookingInputPhoneLocation_2024_08_13": { "type": "object", @@ -31528,9 +28862,7 @@ "description": "only allowed value for type is `phone` - it refers to phone defined by the organizer." } }, - "required": [ - "type" - ] + "required": ["type"] }, "BookingInputOrganizersDefaultAppLocation_2024_08_13": { "type": "object", @@ -31541,9 +28873,7 @@ "description": "only available for team event types and the only allowed value for type is `organizersDefaultApp` - it refers to the default app defined by the organizer." } }, - "required": [ - "type" - ] + "required": ["type"] }, "ValidateBookingLocation_2024_08_13": { "type": "object", @@ -31624,10 +28954,7 @@ "default": "en" } }, - "required": [ - "name", - "timeZone" - ] + "required": ["name", "timeZone"] }, "CreateBookingInput_2024_08_13": { "type": "object", @@ -31679,10 +29006,7 @@ }, "guests": { "description": "An optional list of guest emails attending the event.", - "example": [ - "guest1@example.com", - "guest2@example.com" - ], + "example": ["guest1@example.com", "guest2@example.com"], "type": "array", "items": { "type": "string" @@ -31739,10 +29063,7 @@ "description": "Routing information from routing forms that determined the booking assignment. Both responseId and teamMemberIds are required if provided.", "example": { "responseId": 123, - "teamMemberIds": [ - 101, - 102 - ] + "teamMemberIds": [101, 102] }, "allOf": [ { @@ -31756,10 +29077,7 @@ "example": "123456" } }, - "required": [ - "start", - "attendee" - ] + "required": ["start", "attendee"] }, "CreateInstantBookingInput_2024_08_13": { "type": "object", @@ -31811,10 +29129,7 @@ }, "guests": { "description": "An optional list of guest emails attending the event.", - "example": [ - "guest1@example.com", - "guest2@example.com" - ], + "example": ["guest1@example.com", "guest2@example.com"], "type": "array", "items": { "type": "string" @@ -31871,10 +29186,7 @@ "description": "Routing information from routing forms that determined the booking assignment. Both responseId and teamMemberIds are required if provided.", "example": { "responseId": 123, - "teamMemberIds": [ - 101, - 102 - ] + "teamMemberIds": [101, 102] }, "allOf": [ { @@ -31893,11 +29205,7 @@ "example": true } }, - "required": [ - "start", - "attendee", - "instant" - ] + "required": ["start", "attendee", "instant"] }, "CreateRecurringBookingInput_2024_08_13": { "type": "object", @@ -31949,10 +29257,7 @@ }, "guests": { "description": "An optional list of guest emails attending the event.", - "example": [ - "guest1@example.com", - "guest2@example.com" - ], + "example": ["guest1@example.com", "guest2@example.com"], "type": "array", "items": { "type": "string" @@ -32009,10 +29314,7 @@ "description": "Routing information from routing forms that determined the booking assignment. Both responseId and teamMemberIds are required if provided.", "example": { "responseId": 123, - "teamMemberIds": [ - 101, - 102 - ] + "teamMemberIds": [101, 102] }, "allOf": [ { @@ -32031,10 +29333,7 @@ "example": 5 } }, - "required": [ - "start", - "attendee" - ] + "required": ["start", "attendee"] }, "BookingHost": { "type": "object", @@ -32065,14 +29364,7 @@ "example": "America/Los_Angeles" } }, - "required": [ - "id", - "name", - "email", - "displayEmail", - "username", - "timeZone" - ] + "required": ["id", "name", "email", "displayEmail", "username", "timeZone"] }, "EventType": { "type": "object", @@ -32086,10 +29378,7 @@ "example": "some-event" } }, - "required": [ - "id", - "slug" - ] + "required": ["id", "slug"] }, "BookingAttendee": { "type": "object", @@ -32169,13 +29458,7 @@ "example": "+1234567890" } }, - "required": [ - "name", - "email", - "displayEmail", - "timeZone", - "absent" - ] + "required": ["name", "email", "displayEmail", "timeZone", "absent"] }, "BookingOutput_2024_08_13": { "type": "object", @@ -32204,12 +29487,7 @@ }, "status": { "type": "string", - "enum": [ - "cancelled", - "accepted", - "rejected", - "pending" - ], + "enum": ["cancelled", "accepted", "rejected", "pending"], "example": "accepted" }, "cancellationReason": { @@ -32303,10 +29581,7 @@ } }, "guests": { - "example": [ - "guest1@example.com", - "guest2@example.com" - ], + "example": ["guest1@example.com", "guest2@example.com"], "type": "array", "items": { "type": "string" @@ -32367,12 +29642,7 @@ }, "status": { "type": "string", - "enum": [ - "cancelled", - "accepted", - "rejected", - "pending" - ], + "enum": ["cancelled", "accepted", "rejected", "pending"], "example": "accepted" }, "cancellationReason": { @@ -32466,10 +29736,7 @@ } }, "guests": { - "example": [ - "guest1@example.com", - "guest2@example.com" - ], + "example": ["guest1@example.com", "guest2@example.com"], "type": "array", "items": { "type": "string" @@ -32640,12 +29907,7 @@ }, "status": { "type": "string", - "enum": [ - "cancelled", - "accepted", - "rejected", - "pending" - ], + "enum": ["cancelled", "accepted", "rejected", "pending"], "example": "accepted" }, "cancellationReason": { @@ -32790,12 +30052,7 @@ }, "status": { "type": "string", - "enum": [ - "cancelled", - "accepted", - "rejected", - "pending" - ], + "enum": ["cancelled", "accepted", "rejected", "pending"], "example": "accepted" }, "cancellationReason": { @@ -32924,10 +30181,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "oneOf": [ @@ -32953,10 +30207,7 @@ "description": "Booking data, which can be either a BookingOutput object or an array of RecurringBookingOutput objects" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "GetSeatedBookingOutput_2024_08_13": { "type": "object", @@ -32985,12 +30236,7 @@ }, "status": { "type": "string", - "enum": [ - "cancelled", - "accepted", - "rejected", - "pending" - ], + "enum": ["cancelled", "accepted", "rejected", "pending"], "example": "accepted" }, "cancellationReason": { @@ -33130,12 +30376,7 @@ }, "status": { "type": "string", - "enum": [ - "cancelled", - "accepted", - "rejected", - "pending" - ], + "enum": ["cancelled", "accepted", "rejected", "pending"], "example": "accepted" }, "cancellationReason": { @@ -33259,10 +30500,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "oneOf": [ @@ -33297,10 +30535,7 @@ "type": "object" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "RecordingItem": { "type": "object", @@ -33344,14 +30579,7 @@ "example": "Error message" } }, - "required": [ - "id", - "roomName", - "startTs", - "status", - "duration", - "shareToken" - ] + "required": ["id", "roomName", "startTs", "status", "duration", "shareToken"] }, "GetBookingRecordingsOutput": { "type": "object", @@ -33359,10 +30587,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "error": { "type": "object" @@ -33374,10 +30599,7 @@ } } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "GetBookingTranscriptsOutput": { "type": "object", @@ -33385,16 +30607,10 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { - "example": [ - "https://transcript1.com", - "https://transcript2.com" - ], + "example": ["https://transcript1.com", "https://transcript2.com"], "type": "array", "items": { "type": "string" @@ -33404,10 +30620,7 @@ "type": "object" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "GetBookingsOutput_2024_08_13": { "type": "object", @@ -33415,10 +30628,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "type": "array", @@ -33447,11 +30657,7 @@ "type": "object" } }, - "required": [ - "status", - "data", - "pagination" - ] + "required": ["status", "data", "pagination"] }, "RescheduleBookingInput_2024_08_13": { "type": "object", @@ -33476,9 +30682,7 @@ "example": "123456" } }, - "required": [ - "start" - ] + "required": ["start"] }, "RescheduleSeatedBookingInput_2024_08_13": { "type": "object", @@ -33503,10 +30707,7 @@ "example": "123456" } }, - "required": [ - "start", - "seatUid" - ] + "required": ["start", "seatUid"] }, "RescheduleBookingOutput_2024_08_13": { "type": "object", @@ -33514,10 +30715,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "oneOf": [ @@ -33537,10 +30735,7 @@ "description": "Booking data, which can be either a BookingOutput object or a RecurringBookingOutput object" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "CancelBookingInput_2024_08_13": { "type": "object", @@ -33568,9 +30763,7 @@ "example": "User requested cancellation" } }, - "required": [ - "seatUid" - ] + "required": ["seatUid"] }, "CancelBookingOutput_2024_08_13": { "type": "object", @@ -33578,10 +30771,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "oneOf": [ @@ -33613,10 +30803,7 @@ "description": "Booking data, which can be either a BookingOutput object, a RecurringBookingOutput object, or an array of RecurringBookingOutput objects" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "MarkAbsentAttendee": { "type": "object", @@ -33628,10 +30815,7 @@ "type": "boolean" } }, - "required": [ - "email", - "absent" - ] + "required": ["email", "absent"] }, "MarkAbsentBookingInput_2024_08_13": { "type": "object", @@ -33655,10 +30839,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "oneOf": [ @@ -33672,10 +30853,7 @@ "description": "Booking data, which can be either a BookingOutput object or a RecurringBookingOutput object" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "ReassignedToDto": { "type": "object", @@ -33698,12 +30876,7 @@ "description": "Clean email for display purposes" } }, - "required": [ - "id", - "name", - "email", - "displayEmail" - ] + "required": ["id", "name", "email", "displayEmail"] }, "ReassignBookingOutput_2024_08_13": { "type": "object", @@ -33711,10 +30884,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "oneOf": [ @@ -33730,10 +30900,7 @@ ] } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "ReassignToUserBookingInput_2024_08_13": { "type": "object", @@ -33767,10 +30934,7 @@ "description": "The link to the calendar" } }, - "required": [ - "label", - "link" - ] + "required": ["label", "link"] }, "CalendarLinksOutput_2024_08_13": { "type": "object", @@ -33788,10 +30952,7 @@ } } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "BookingReference": { "type": "object", @@ -33814,12 +30975,7 @@ "description": "The id of the booking reference" } }, - "required": [ - "type", - "eventUid", - "destinationCalendarId", - "id" - ] + "required": ["type", "eventUid", "destinationCalendarId", "id"] }, "BookingReferencesOutput_2024_08_13": { "type": "object", @@ -33837,10 +30993,7 @@ } } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "CalMeetingParticipant": { "type": "object", @@ -33864,12 +31017,7 @@ "example": 3600 } }, - "required": [ - "userId", - "userName", - "joinTime", - "duration" - ] + "required": ["userId", "userName", "joinTime", "duration"] }, "CalMeetingSession": { "type": "object", @@ -33905,15 +31053,7 @@ } } }, - "required": [ - "id", - "room", - "startTime", - "duration", - "ongoing", - "maxParticipants", - "participants" - ] + "required": ["id", "room", "startTime", "duration", "ongoing", "maxParticipants", "participants"] }, "GetBookingVideoSessionsOutput": { "type": "object", @@ -33921,10 +31061,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "type": "array", @@ -33936,10 +31073,7 @@ "type": "object" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "Guest": { "type": "object", @@ -34016,9 +31150,7 @@ "default": "en" } }, - "required": [ - "email" - ] + "required": ["email"] }, "AddGuestsInput_2024_08_13": { "type": "object", @@ -34042,9 +31174,7 @@ } } }, - "required": [ - "guests" - ] + "required": ["guests"] }, "AddGuestsOutput_2024_08_13": { "type": "object", @@ -34052,10 +31182,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "oneOf": [ @@ -34087,10 +31214,7 @@ "description": "Booking data, which can be either a BookingOutput object, a RecurringBookingOutput object, or an array of RecurringBookingOutput objects" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "UpdateInputAddressLocation_2024_08_13": { "type": "object", @@ -34105,10 +31229,7 @@ "example": "123 Example St, City, Country" } }, - "required": [ - "type", - "address" - ] + "required": ["type", "address"] }, "UpdateBookingInputAttendeeAddressLocation_2024_08_13": { "type": "object", @@ -34123,10 +31244,7 @@ "example": "123 Example St, City, Country" } }, - "required": [ - "type", - "address" - ] + "required": ["type", "address"] }, "UpdateBookingInputAttendeeDefinedLocation_2024_08_13": { "type": "object", @@ -34141,10 +31259,7 @@ "example": "321 Example St, City, Country" } }, - "required": [ - "type", - "location" - ] + "required": ["type", "location"] }, "UpdateBookingInputAttendeePhoneLocation_2024_08_13": { "type": "object", @@ -34159,10 +31274,7 @@ "example": "+37120993151" } }, - "required": [ - "type", - "phone" - ] + "required": ["type", "phone"] }, "UpdateBookingInputLinkLocation_2024_08_13": { "type": "object", @@ -34177,10 +31289,7 @@ "example": "https://meet.google.com/txi-fein-xyz" } }, - "required": [ - "type", - "link" - ] + "required": ["type", "link"] }, "UpdateBookingInputPhoneLocation_2024_08_13": { "type": "object", @@ -34195,10 +31304,7 @@ "example": "+37120993151" } }, - "required": [ - "type", - "phone" - ] + "required": ["type", "phone"] }, "UpdateBookingLocationInput_2024_08_13": { "type": "object", @@ -34234,10 +31340,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "oneOf": [ @@ -34269,10 +31372,7 @@ "description": "Booking data, which can be either a BookingOutput object, a RecurringBookingOutput object, or an array of RecurringBookingOutput objects" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "CreateTeamMembershipInput": { "type": "object", @@ -34287,20 +31387,14 @@ "role": { "type": "string", "default": "MEMBER", - "enum": [ - "MEMBER", - "OWNER", - "ADMIN" - ] + "enum": ["MEMBER", "OWNER", "ADMIN"] }, "disableImpersonation": { "type": "boolean", "default": false } }, - "required": [ - "userId" - ] + "required": ["userId"] }, "CreateTeamMembershipOutput": { "type": "object", @@ -34308,19 +31402,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/TeamMembershipOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "GetTeamMembershipOutput": { "type": "object", @@ -34328,19 +31416,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/TeamMembershipOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "GetTeamMembershipsOutput": { "type": "object", @@ -34348,19 +31430,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/TeamMembershipOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "UpdateTeamMembershipInput": { "type": "object", @@ -34370,11 +31446,7 @@ }, "role": { "type": "string", - "enum": [ - "MEMBER", - "OWNER", - "ADMIN" - ] + "enum": ["MEMBER", "OWNER", "ADMIN"] }, "disableImpersonation": { "type": "boolean" @@ -34387,19 +31459,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/TeamMembershipOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "DeleteTeamMembershipOutput": { "type": "object", @@ -34407,19 +31473,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/TeamMembershipOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "UserWebhookOutputDto": { "type": "object", @@ -34451,14 +31511,7 @@ "type": "string" } }, - "required": [ - "payloadTemplate", - "userId", - "id", - "triggers", - "subscriberUrl", - "active" - ] + "required": ["payloadTemplate", "userId", "id", "triggers", "subscriberUrl", "active"] }, "UserWebhookOutputResponseDto": { "type": "object", @@ -34466,19 +31519,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/UserWebhookOutputDto" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "UserWebhooksOutputResponseDto": { "type": "object", @@ -34486,10 +31533,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "type": "array", @@ -34498,10 +31542,7 @@ } } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "EventTypeWebhookOutputDto": { "type": "object", @@ -34533,14 +31574,7 @@ "type": "string" } }, - "required": [ - "payloadTemplate", - "eventTypeId", - "id", - "triggers", - "subscriberUrl", - "active" - ] + "required": ["payloadTemplate", "eventTypeId", "id", "triggers", "subscriberUrl", "active"] }, "EventTypeWebhookOutputResponseDto": { "type": "object", @@ -34548,19 +31582,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/EventTypeWebhookOutputDto" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "EventTypeWebhooksOutputResponseDto": { "type": "object", @@ -34568,10 +31596,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "type": "array", @@ -34580,10 +31605,7 @@ } } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "DeleteManyWebhooksOutputResponseDto": { "type": "object", @@ -34591,19 +31613,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "type": "string" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "OAuthClientWebhookOutputDto": { "type": "object", @@ -34635,14 +31651,7 @@ "type": "string" } }, - "required": [ - "payloadTemplate", - "oAuthClientId", - "id", - "triggers", - "subscriberUrl", - "active" - ] + "required": ["payloadTemplate", "oAuthClientId", "id", "triggers", "subscriberUrl", "active"] }, "OAuthClientWebhookOutputResponseDto": { "type": "object", @@ -34650,19 +31659,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/OAuthClientWebhookOutputDto" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "OAuthClientWebhooksOutputResponseDto": { "type": "object", @@ -34670,10 +31673,7 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "type": "array", @@ -34682,10 +31682,7 @@ } } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "DestinationCalendarsInputBodyDto": { "type": "object", @@ -34694,11 +31691,7 @@ "type": "string", "example": "apple_calendar", "description": "The calendar service you want to integrate, as returned by the /calendars endpoint", - "enum": [ - "apple_calendar", - "google_calendar", - "office365_calendar" - ] + "enum": ["apple_calendar", "google_calendar", "office365_calendar"] }, "externalId": { "type": "string", @@ -34709,10 +31702,7 @@ "type": "string" } }, - "required": [ - "integration", - "externalId" - ] + "required": ["integration", "externalId"] }, "DestinationCalendarsOutputDto": { "type": "object", @@ -34731,12 +31721,7 @@ "nullable": true } }, - "required": [ - "userId", - "integration", - "externalId", - "credentialId" - ] + "required": ["userId", "integration", "externalId", "credentialId"] }, "DestinationCalendarsOutputResponseDto": { "type": "object", @@ -34744,19 +31729,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/DestinationCalendarsOutputDto" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "CalendarEventVideoLocation": { "type": "object", @@ -34764,9 +31743,7 @@ "type": { "type": "string", "default": "video", - "enum": [ - "video" - ], + "enum": ["video"], "description": "Indicates this is a video conference location" }, "url": { @@ -34794,10 +31771,7 @@ "description": "Access code required to join the conference" } }, - "required": [ - "type", - "url" - ] + "required": ["type", "url"] }, "CalendarEventPhoneLocation": { "type": "object", @@ -34805,9 +31779,7 @@ "type": { "type": "string", "default": "phone", - "enum": [ - "phone" - ], + "enum": ["phone"], "description": "Indicates this is a phone conference location" }, "url": { @@ -34840,10 +31812,7 @@ "description": "Country/region code for the phone number" } }, - "required": [ - "type", - "url" - ] + "required": ["type", "url"] }, "CalendarEventSipLocation": { "type": "object", @@ -34851,9 +31820,7 @@ "type": { "type": "string", "default": "sip", - "enum": [ - "sip" - ], + "enum": ["sip"], "description": "Indicates this is a SIP (Session Initiation Protocol) conference location" }, "url": { @@ -34876,10 +31843,7 @@ "description": "Password required for the SIP conference" } }, - "required": [ - "type", - "url" - ] + "required": ["type", "url"] }, "CalendarEventMoreLocation": { "type": "object", @@ -34887,9 +31851,7 @@ "type": { "type": "string", "default": "more", - "enum": [ - "more" - ], + "enum": ["more"], "description": "Indicates this is an additional conference location type" }, "url": { @@ -34902,20 +31864,12 @@ "description": "Display name for this location" } }, - "required": [ - "type", - "url" - ] + "required": ["type", "url"] }, "CalendarEventResponseStatus": { "type": "string", "description": "Response status of the attendee", - "enum": [ - "accepted", - "pending", - "declined", - "needsAction" - ] + "enum": ["accepted", "pending", "declined", "needsAction"] }, "CalendarEventAttendee": { "type": "object", @@ -34949,19 +31903,12 @@ "description": "Indicates if this attendee is the host" } }, - "required": [ - "email" - ] + "required": ["email"] }, "CalendarEventStatus": { "type": "string", "description": "Status of the event (accepted, pending, declined, cancelled)", - "enum": [ - "accepted", - "pending", - "declined", - "cancelled" - ] + "enum": ["accepted", "pending", "declined", "cancelled"] }, "CalendarEventHost": { "type": "object", @@ -34981,9 +31928,7 @@ "$ref": "#/components/schemas/CalendarEventResponseStatus" } }, - "required": [ - "email" - ] + "required": ["email"] }, "calendarEventOwner": { "type": "object", @@ -34998,18 +31943,12 @@ "description": "Display name of the event host" } }, - "required": [ - "email" - ] + "required": ["email"] }, "CalendarSource": { "type": "string", "description": "Calendar integration source (e.g., Google Calendar, Office 365, Apple Calendar). Currently only Google Calendar is supported.", - "enum": [ - "google", - "office365", - "apple" - ] + "enum": ["google", "office365", "apple"] }, "UnifiedCalendarEventOutput": { "type": "object", @@ -35112,13 +32051,7 @@ "$ref": "#/components/schemas/CalendarSource" } }, - "required": [ - "start", - "end", - "id", - "title", - "source" - ] + "required": ["start", "end", "id", "title", "source"] }, "GetUnifiedCalendarEventOutput": { "type": "object", @@ -35126,19 +32059,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/UnifiedCalendarEventOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "UpdateCalendarEventAttendee": { "type": "object", @@ -35234,9 +32161,7 @@ "example": "acme@example.com" } }, - "required": [ - "email" - ] + "required": ["email"] }, "RequestEmailVerificationOutput": { "type": "object", @@ -35244,15 +32169,10 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] } }, - "required": [ - "status" - ] + "required": ["status"] }, "RequestPhoneVerificationInput": { "type": "object", @@ -35263,9 +32183,7 @@ "example": "+372 5555 6666" } }, - "required": [ - "phone" - ] + "required": ["phone"] }, "RequestPhoneVerificationOutput": { "type": "object", @@ -35273,15 +32191,10 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] } }, - "required": [ - "status" - ] + "required": ["status"] }, "VerifyEmailInput": { "type": "object", @@ -35297,10 +32210,7 @@ "example": "1ABG2C" } }, - "required": [ - "email", - "code" - ] + "required": ["email", "code"] }, "WorkingHours": { "type": "object", @@ -35322,11 +32232,7 @@ "nullable": true } }, - "required": [ - "days", - "startTime", - "endTime" - ] + "required": ["days", "startTime", "endTime"] }, "AvailabilityModel": { "type": "object", @@ -35366,12 +32272,7 @@ "nullable": true } }, - "required": [ - "id", - "days", - "startTime", - "endTime" - ] + "required": ["id", "days", "startTime", "endTime"] }, "ScheduleOutput": { "type": "object", @@ -35441,19 +32342,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/ScheduleOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "VerifyPhoneInput": { "type": "object", @@ -35469,10 +32364,7 @@ "example": "1ABG2C" } }, - "required": [ - "phone", - "code" - ] + "required": ["phone", "code"] }, "UserVerifiedPhoneOutput": { "type": "object", @@ -35480,19 +32372,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/ScheduleOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "UserVerifiedEmailsOutput": { "type": "object", @@ -35500,19 +32386,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/ScheduleOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "UserVerifiedPhonesOutput": { "type": "object", @@ -35520,19 +32400,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/ScheduleOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "TeamVerifiedEmailOutput": { "type": "object", @@ -35540,19 +32414,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/ScheduleOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "TeamVerifiedPhoneOutput": { "type": "object", @@ -35560,19 +32428,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/ScheduleOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "TeamVerifiedEmailsOutput": { "type": "object", @@ -35580,19 +32442,13 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/ScheduleOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] }, "TeamVerifiedPhonesOutput": { "type": "object", @@ -35600,20 +32456,14 @@ "status": { "type": "string", "example": "success", - "enum": [ - "success", - "error" - ] + "enum": ["success", "error"] }, "data": { "$ref": "#/components/schemas/ScheduleOutput" } }, - "required": [ - "status", - "data" - ] + "required": ["status", "data"] } } } -} \ No newline at end of file +} diff --git a/packages/platform/types/bookings/2024-08-13/inputs/reschedule-booking.input.ts b/packages/platform/types/bookings/2024-08-13/inputs/reschedule-booking.input.ts index 73fedc366f..233b8aaa3c 100644 --- a/packages/platform/types/bookings/2024-08-13/inputs/reschedule-booking.input.ts +++ b/packages/platform/types/bookings/2024-08-13/inputs/reschedule-booking.input.ts @@ -1,5 +1,5 @@ -import { ApiProperty, ApiPropertyOptional } from "@nestjs/swagger"; -import { IsDateString, IsOptional, IsString, Validate, isEmail } from "class-validator"; +import { ApiHideProperty, ApiProperty, ApiPropertyOptional } from "@nestjs/swagger"; +import { IsArray, IsDateString, IsInt, IsOptional, IsString, isEmail, Validate } from "class-validator"; export const RESCHEDULED_BY_DOCS = `Email of the person who is rescheduling the booking - only needed when rescheduling a booking that requires a confirmation. If event type owner email is provided then rescheduled booking will be automatically confirmed. If attendee email or no email is passed then the event type @@ -36,6 +36,12 @@ export class RescheduleBookingInput_2024_08_13 { example: "123456", }) emailVerificationCode?: string; + + @ApiHideProperty() + @IsOptional() + @IsArray() + @IsInt({ each: true }) + rrHostSubsetIds?: number[]; } export class RescheduleSeatedBookingInput_2024_08_13 {