{
  "info": {
    "name": "Cal — mcp.ai",
    "description": "REST API for the Cal MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/cal",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "cal_add_member_to_team_using_org_and_team_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/member/to/team/using/org/and/team/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "member",
            "to",
            "team",
            "using",
            "org",
            "and",
            "team",
            "id"
          ]
        },
        "description": "Adds a new member to a specified team within an organization by creating a team membership.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"role\": \"\",\n  \"orgId\": 0,\n  \"teamId\": 0,\n  \"userId\": 0,\n  \"accepted\": false,\n  \"disableImpersonation\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_add_organization_attribute_option",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/organization/attribute/option",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "organization",
            "attribute",
            "option"
          ]
        },
        "description": "Adds a new option to an organization's attribute, requiring a display `value` and a `slug` unique for that attribute.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"slug\": \"\",\n  \"orgId\": 0,\n  \"value\": \"\",\n  \"attributeId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_cal_delete_oauth_client_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/cal/delete/oauth/client/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "cal",
            "delete",
            "oauth",
            "client",
            "webhook"
          ]
        },
        "description": "Permanently deletes a specific webhook subscription of an oauth client in the cal application, stopping its notifications.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"clientId\": \"\",\n  \"webhookId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_cancel_booking_via_uid",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/cancel/booking/via/uid",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "cancel",
            "booking",
            "via",
            "uid"
          ]
        },
        "description": "Cancels an existing and active cal.com booking using its unique identifier (uid).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"bookingUid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_check_calendar_version2",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/check/calendar/version2",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "check",
            "calendar",
            "version2"
          ]
        },
        "description": "Retrieves free/busy availability for a specified calendar to aid scheduling without revealing event details; requires an existing, accessible calendar, noting that data granularity can vary.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"calendar\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_check_gcal_synchronization_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/check/gcal/synchronization/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "check",
            "gcal",
            "synchronization",
            "status"
          ]
        },
        "description": "Call this read-only action to verify the connection and synchronization status of a user's google calendar integration with cal.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_check_ics_feed_calendar_endpoint",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/check/ics/feed/calendar/endpoint",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "check",
            "ics",
            "feed",
            "calendar",
            "endpoint"
          ]
        },
        "description": "Checks an ics feed url (expected as a query parameter) to verify its validity, accessibility, and icalendar data integrity.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_check_stripe_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/check/stripe/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "check",
            "stripe",
            "status"
          ]
        },
        "description": "Verifies if stripe is correctly connected to the cal scheduling system and functional for processing payments, reporting only on the integration's status.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_check_team_stripe_integration_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/check/team/stripe/integration/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "check",
            "team",
            "stripe",
            "integration",
            "status"
          ]
        },
        "description": "Retrieves the stripe integration status and related information for a team, primarily to verify account connection, subscription details, or payment setup; this is a read-only operation that does not ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"teamId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_confirm_booking_by_uid",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/confirm/booking/by/uid",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "confirm",
            "booking",
            "by",
            "uid"
          ]
        },
        "description": "Confirms an existing booking by `bookinguid` if the booking exists and is in a state allowing confirmation (e.g., not already cancelled or confirmed); this finalizes the booking, does not modify its d",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"bookingUid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_connect_to_calendar",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/connect/to/calendar",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "connect",
            "to",
            "calendar"
          ]
        },
        "description": "Initiates or checks the external connection status for a specified calendar, possibly returning a redirect url for user authorization to complete integration, without altering calendar data.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"calendar\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_create_membership_for_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/membership/for/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "membership",
            "for",
            "organization"
          ]
        },
        "description": "Creates a new membership or updates an existing one for a user within an organization; the user specified by userid must already exist in the system.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"role\": \"\",\n  \"orgId\": 0,\n  \"userId\": 0,\n  \"accepted\": false,\n  \"disableImpersonation\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_create_oauth_client_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/oauth/client/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "oauth",
            "client",
            "user"
          ]
        },
        "description": "Creates a new managed user for an oauth client, setting profile and scheduling preferences; if `timezone` is not provided, a default schedule (mon-fri, 9am-5pm) is not created, requiring manual setup ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"email\": \"\",\n  \"locale\": \"\",\n  \"clientId\": \"\",\n  \"timeZone\": \"\",\n  \"avatarUrl\": \"\",\n  \"weekStart\": \"\",\n  \"timeFormat\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_create_oauth_client_webhook_configuration",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/oauth/client/webhook/configuration",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "oauth",
            "client",
            "webhook",
            "configuration"
          ]
        },
        "description": "Creates a webhook for an existing oauth client to send real-time cal.com event notifications (e.g., `booking created`, `meeting ended`) to the `subscriberurl`, enabling integration with external syste",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"active\": false,\n  \"secret\": \"\",\n  \"clientId\": \"\",\n  \"triggers\": \"\",\n  \"subscriberUrl\": \"\",\n  \"payloadTemplate\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_create_or_update_team_profile",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/or/update/team/profile",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "or",
            "update",
            "team",
            "profile"
          ]
        },
        "description": "Creates a new team profile, or updates one if a 'slug' matches, customizing branding, scheduling, privacy, and operational details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"bio\": \"\",\n  \"name\": \"\",\n  \"slug\": \"\",\n  \"theme\": \"\",\n  \"appLogo\": \"\",\n  \"logoUrl\": \"\",\n  \"metadata\": \"\",\n  \"timeZone\": \"\",\n  \"bannerUrl\": \"\",\n  \"isPrivate\": false,\n  \"weekStart\": \"\",\n  \"brandColor\": \"\",\n  \"timeFormat\": 0,\n  \"appIconLogo\": \"\",\n  \"calVideoLogo\": \"\",\n  \"hideBranding\": false,\n  \"darkBrandColor\": \"\",\n  \"autoAcceptCreator\": false,\n  \"hideBookATeamMember\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_create_organization_attributes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/organization/attributes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "organization",
            "attributes"
          ]
        },
        "description": "Creates a new custom attribute for an existing organization, used to enhance data collection for event bookings or user profiles.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"slug\": \"\",\n  \"type\": \"\",\n  \"orgId\": 0,\n  \"enabled\": false,\n  \"options\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_create_organization_webhook_by_org_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/organization/webhook/by/org/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "organization",
            "webhook",
            "by",
            "org",
            "id"
          ]
        },
        "description": "Creates a webhook for a specified, existing organization, sending notifications for selected trigger events to a designated, publicly accessible subscriber url that accepts post requests.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"orgId\": 0,\n  \"active\": false,\n  \"secret\": \"\",\n  \"triggers\": \"\",\n  \"subscriberUrl\": \"\",\n  \"payloadTemplate\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_create_phone_call_event",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/phone/call/event",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "phone",
            "call",
            "event"
          ]
        },
        "description": "Schedules a phone call event in cal.com using existing eventtype, organization, and team ids; this action only registers the event details and does not initiate the actual phone call.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"orgId\": 0,\n  \"teamId\": 0,\n  \"calApiKey\": \"\",\n  \"guestName\": \"\",\n  \"guestEmail\": \"\",\n  \"eventTypeId\": 0,\n  \"beginMessage\": \"\",\n  \"guestCompany\": \"\",\n  \"numberToCall\": \"\",\n  \"templateType\": \"\",\n  \"generalPrompt\": \"\",\n  \"schedulerName\": \"\",\n  \"yourPhoneNumber\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_create_phone_call_for_event_type",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/phone/call/for/event/type",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "phone",
            "call",
            "for",
            "event",
            "type"
          ]
        },
        "description": "Creates a phone call template associated with an existing event type and team, for defining reusable call configurations like numbers and scripts; note this does not initiate an actual call.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"teamId\": 0,\n  \"calApiKey\": \"\",\n  \"guestName\": \"\",\n  \"guestEmail\": \"\",\n  \"eventTypeId\": 0,\n  \"beginMessage\": \"\",\n  \"guestCompany\": \"\",\n  \"numberToCall\": \"\",\n  \"templateType\": \"\",\n  \"generalPrompt\": \"\",\n  \"schedulerName\": \"\",\n  \"yourPhoneNumber\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_create_team_event_type",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/team/event/type",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "team",
            "event",
            "type"
          ]
        },
        "description": "Creates a new event type for a specified team in cal.com; ensure `teamid`, any provided `scheduleid`, `hosts.userid`, and `destinationcalendar` details are valid and accessible.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"slug\": \"\",\n  \"hosts\": \"\",\n  \"seats\": {},\n  \"title\": \"\",\n  \"teamId\": 0,\n  \"locations\": \"\",\n  \"customName\": \"\",\n  \"recurrence\": {},\n  \"scheduleId\": 0,\n  \"description\": \"\",\n  \"offsetStart\": 0,\n  \"slotInterval\": 0,\n  \"bookingFields\": \"\",\n  \"bookingWindow\": {},\n  \"disableGuests\": false,\n  \"lengthInMinutes\": 0,\n  \"afterEventBuffer\": 0,\n  \"beforeEventBuffer\": 0,\n  \"hideCalendarNotes\": false,\n  \"bookingLimitsCount\": {},\n  \"confirmationPolicy\": {},\n  \"successRedirectUrl\": \"\",\n  \"color__darkThemeHex\": \"\",\n  \"assignAllTeamMembers\": false,\n  \"color__lightThemeHex\": \"\",\n  \"minimumBookingNotice\": 0,\n  \"bookingLimitsDuration\": {},\n  \"lengthInMinutesOptions\": \"\",\n  \"hideCalendarEventDetails\": false,\n  \"onlyShowFirstAvailableSlot\": false,\n  \"useDestinationCalendarEmail\": false,\n  \"destinationCalendar__externalId\": \"\",\n  \"lockTimeZoneToggleOnBookingPage\": false,\n  \"requiresBookerEmailVerification\": false,\n  \"destinationCalendar__integration\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_create_team_event_types_with_custom_options",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/team/event/types/with/custom/options",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "team",
            "event",
            "types",
            "with",
            "custom",
            "options"
          ]
        },
        "description": "Creates a highly customizable cal.com team event type with extensive scheduling, booking, and host assignment options; `lengthinminutes` (as string) must be included in `lengthinminutesoptions`, desti",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"slug\": \"\",\n  \"hosts\": \"\",\n  \"orgId\": 0,\n  \"seats\": {},\n  \"title\": \"\",\n  \"teamId\": 0,\n  \"locations\": \"\",\n  \"customName\": \"\",\n  \"recurrence\": {},\n  \"scheduleId\": 0,\n  \"description\": \"\",\n  \"offsetStart\": 0,\n  \"slotInterval\": 0,\n  \"bookingFields\": \"\",\n  \"bookingWindow\": {},\n  \"disableGuests\": false,\n  \"lengthInMinutes\": 0,\n  \"afterEventBuffer\": 0,\n  \"beforeEventBuffer\": 0,\n  \"hideCalendarNotes\": false,\n  \"bookingLimitsCount\": {},\n  \"confirmationPolicy\": {},\n  \"successRedirectUrl\": \"\",\n  \"color__darkThemeHex\": \"\",\n  \"assignAllTeamMembers\": false,\n  \"color__lightThemeHex\": \"\",\n  \"minimumBookingNotice\": 0,\n  \"bookingLimitsDuration\": {},\n  \"lengthInMinutesOptions\": \"\",\n  \"hideCalendarEventDetails\": false,\n  \"onlyShowFirstAvailableSlot\": false,\n  \"useDestinationCalendarEmail\": false,\n  \"destinationCalendar__externalId\": \"\",\n  \"lockTimeZoneToggleOnBookingPage\": false,\n  \"requiresBookerEmailVerification\": false,\n  \"destinationCalendar__integration\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_create_team_in_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/team/in/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "team",
            "in",
            "organization"
          ]
        },
        "description": "Creates a new team with customizable attributes within an existing and accessible cal.com organization specified by orgid.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"bio\": \"\",\n  \"name\": \"\",\n  \"slug\": \"\",\n  \"orgId\": 0,\n  \"theme\": \"\",\n  \"appLogo\": \"\",\n  \"logoUrl\": \"\",\n  \"metadata\": \"\",\n  \"timeZone\": \"\",\n  \"bannerUrl\": \"\",\n  \"isPrivate\": false,\n  \"weekStart\": \"\",\n  \"brandColor\": \"\",\n  \"timeFormat\": 0,\n  \"appIconLogo\": \"\",\n  \"calVideoLogo\": \"\",\n  \"hideBranding\": false,\n  \"darkBrandColor\": \"\",\n  \"autoAcceptCreator\": false,\n  \"hideBookATeamMember\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_create_team_membership_with_role",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/team/membership/with/role",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "team",
            "membership",
            "with",
            "role"
          ]
        },
        "description": "Adds a user to a team with a specified role, acceptance status, and impersonation settings; ensure `teamid` and `userid` refer to existing, valid entities.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"role\": \"\",\n  \"teamId\": 0,\n  \"userId\": 0,\n  \"accepted\": false,\n  \"disableImpersonation\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_create_user_availability_schedule",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/user/availability/schedule",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "user",
            "availability",
            "schedule"
          ]
        },
        "description": "Creates a cal.com user availability schedule, defining its name, timezone, weekly recurring availability, and specific date overrides; if `isdefault` is true, this schedule replaces any existing defau",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"timeZone\": \"\",\n  \"isDefault\": false,\n  \"overrides\": \"\",\n  \"availability\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_create_user_schedule_in_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/user/schedule/in/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "user",
            "schedule",
            "in",
            "organization"
          ]
        },
        "description": "Creates a new schedule defining a user's availability with weekly slots and date-specific overrides in an organization; setting 'isdefault' to true may replace an existing default schedule for the use",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"orgId\": 0,\n  \"userId\": 0,\n  \"timeZone\": \"\",\n  \"isDefault\": false,\n  \"overrides\": \"\",\n  \"availability\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_create_webhook_for_event_type",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/webhook/for/event/type",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "webhook",
            "for",
            "event",
            "type"
          ]
        },
        "description": "Creates a webhook for an existing `eventtypeid` in cal.com, sending notifications for specified `triggers` to a `subscriberurl` that handles post requests.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"active\": false,\n  \"secret\": \"\",\n  \"triggers\": \"\",\n  \"eventTypeId\": 0,\n  \"subscriberUrl\": \"\",\n  \"payloadTemplate\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_decline_booking_with_reason",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/decline/booking/with/reason",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "decline",
            "booking",
            "with",
            "reason"
          ]
        },
        "description": "Declines a pending booking using its bookinguid, optionally with a reason; this action is irreversible and applies only to bookings awaiting confirmation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"reason\": \"\",\n  \"bookingUid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_delete_conference_app_connection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/conference/app/connection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "conference",
            "app",
            "connection"
          ]
        },
        "description": "Disconnects the specified conferencing application (e.g., 'zoom', 'google meet') for the cal.com account, immediately terminating any ongoing call or meeting; use with caution.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"app\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_delete_event_type_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/event/type/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "event",
            "type",
            "by",
            "id"
          ]
        },
        "description": "Permanently deletes an existing event type by its id, which invalidates its scheduling links; the operation is irreversible, and while existing bookings are unaffected, no new bookings can be made for",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"eventTypeId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_delete_event_type_in_team",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/event/type/in/team",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "event",
            "type",
            "in",
            "team"
          ]
        },
        "description": "Permanently removes an event type's configuration from a team's scheduling options (e.g., for cleanup); this action is irreversible and requires the event type to be associated with the team.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"teamId\": 0,\n  \"eventTypeId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_delete_membership_in_team",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/membership/in/team",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "membership",
            "in",
            "team"
          ]
        },
        "description": "Use to permanently remove a user's membership from a specific team within an organization, which revokes their team-associated access but does not remove them from the organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"orgId\": 0,\n  \"teamId\": 0,\n  \"membershipId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_delete_oauth_client_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/oauth/client/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "oauth",
            "client",
            "user"
          ]
        },
        "description": "Irreversibly revokes a specific user's association with a given oauth client, without deleting the user's cal account.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"userId\": 0,\n  \"clientId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_delete_org_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/org/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "org",
            "webhook"
          ]
        },
        "description": "Permanently deletes an organization's webhook, which stops all its notifications; this action is irreversible and the webhook cannot be recovered.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"orgId\": 0,\n  \"webhookId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_delete_organization_attribute",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/organization/attribute",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "organization",
            "attribute"
          ]
        },
        "description": "Permanently deletes an existing attribute (specified by `attributeid`) from an existing organization (specified by `orgid`); this action is irreversible and may affect features dependent on the attrib",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"orgId\": 0,\n  \"attributeId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_delete_organization_attribute_option",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/organization/attribute/option",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "organization",
            "attribute",
            "option"
          ]
        },
        "description": "Permanently deletes a specified option from an organization's attribute, typically to remove an unnecessary configuration choice.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"orgId\": 0,\n  \"optionId\": \"\",\n  \"attributeId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_delete_organization_membership",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/organization/membership",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "organization",
            "membership"
          ]
        },
        "description": "Irreversibly deletes a user's membership from an organization, removing all associated access and permissions; the response confirms deletion without returning details of the deleted membership.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"orgId\": 0,\n  \"membershipId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_delete_schedule_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/schedule/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "schedule",
            "by",
            "id"
          ]
        },
        "description": "Permanently deletes a specific schedule using its unique identifier, which must correspond to an existing schedule.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"scheduleId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_delete_selected_calendars",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/selected/calendars",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "selected",
            "calendars"
          ]
        },
        "description": "Removes a specified, currently selected calendar from the user's active list within the application, without deleting it from the external provider.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"externalId\": \"\",\n  \"integration\": \"\",\n  \"credentialId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_delete_selected_slot",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/selected/slot",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "selected",
            "slot"
          ]
        },
        "description": "Deletes a previously selected time slot from the cal schedule using its `uid`; the slot must exist and this action is irreversible.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"uid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_delete_team_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/team/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "team",
            "by",
            "id"
          ]
        },
        "description": "Permanently and irreversibly deletes an existing team and all its associated data from the cal system, using the team's unique `teamid`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"teamId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_delete_team_from_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/team/from/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "team",
            "from",
            "organization"
          ]
        },
        "description": "Permanently and irreversibly deletes a specific team (and all its associated data, members, and linked projects/events) from an organization, when the team is no longer needed or during organizational",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"orgId\": 0,\n  \"teamId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_delete_team_memberships_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/team/memberships/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "team",
            "memberships",
            "by",
            "id"
          ]
        },
        "description": "Irreversibly removes a user's team membership in the cal application, revoking access to that specific team; the user's overall cal account remains active.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"teamId\": 0,\n  \"membershipId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_delete_user_attribute_option",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/user/attribute/option",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "user",
            "attribute",
            "option"
          ]
        },
        "description": "Removes a custom attribute option (e.g., skill, role) currently assigned to a user within an organization; this operation is irreversible.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"orgId\": 0,\n  \"userId\": 0,\n  \"attributeOptionId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_delete_user_from_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/user/from/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "user",
            "from",
            "organization"
          ]
        },
        "description": "Permanently removes a user from a specific organization (user's system-wide account is unaffected), revoking their access rights therein; this action is irreversible via api and expects the user to be",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"orgId\": 0,\n  \"userId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_delete_user_schedule",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/user/schedule",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "user",
            "schedule"
          ]
        },
        "description": "Permanently deletes a specific user's schedule, provided the organization, user, and schedule (identified by `orgid`, `userid`, and `scheduleid`) exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"orgId\": 0,\n  \"userId\": 0,\n  \"scheduleId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_delete_webhook_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/webhook/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "webhook",
            "by",
            "id"
          ]
        },
        "description": "Permanently deletes an existing webhook by its `webhookid`, stopping future notifications; this action is irreversible.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"webhookId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_delete_webhook_for_event_type",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/webhook/for/event/type",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "webhook",
            "for",
            "event",
            "type"
          ]
        },
        "description": "Permanently deletes a specific webhook for an event type, halting its real-time notifications; this operation is irreversible and leaves the event type and other webhooks untouched.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"webhookId\": \"\",\n  \"eventTypeId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_delete_webhooks_for_event_type",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/webhooks/for/event/type",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "webhooks",
            "for",
            "event",
            "type"
          ]
        },
        "description": "Call this to irreversibly delete all webhooks for a specific `eventtypeid` if the event type exists; details of deleted webhooks are not returned.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"eventTypeId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_disconnect_calendar_using_credential_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/disconnect/calendar/using/credential/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "disconnect",
            "calendar",
            "using",
            "credential",
            "id"
          ]
        },
        "description": "Disconnects a calendar integration by its provider name and credential id, irreversibly revoking cal's access; external calendar data remains unaffected.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"calendar\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_fetch_all_bookings",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/all/bookings",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "all",
            "bookings"
          ]
        },
        "description": "Fetches a list of bookings, optionally filtered by status, attendee, date range, or by event/team ids (which must belong to/include the authenticated user respectively), with support for pagination an",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"skip\": 0,\n  \"take\": 0,\n  \"status\": \"\",\n  \"teamId\": \"\",\n  \"sortEnd\": \"\",\n  \"teamsIds\": \"\",\n  \"beforeEnd\": \"\",\n  \"sortStart\": \"\",\n  \"afterStart\": \"\",\n  \"eventTypeId\": \"\",\n  \"sortCreated\": \"\",\n  \"attendeeName\": \"\",\n  \"eventTypeIds\": \"\",\n  \"attendeeEmail\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_fetch_event_type_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/event/type/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "event",
            "type",
            "details"
          ]
        },
        "description": "Fetches all configuration settings and characteristics for a single event type (identified by orgid, teamid, and eventtypeid), which must exist and be accessible; this read-only action cannot list, cr",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"orgId\": 0,\n  \"teamId\": 0,\n  \"eventTypeId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_fetch_organization_attribute_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/organization/attribute/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "organization",
            "attribute",
            "by",
            "id"
          ]
        },
        "description": "Retrieves a specific attribute of an organization, useful for fetching a single data point instead of the entire organization record.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"orgId\": 0,\n  \"attributeId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_fetch_provider_access_token",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/provider/access/token",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "provider",
            "access",
            "token"
          ]
        },
        "description": "Fetches an oauth access token for the specified `clientid` to authenticate api calls; this action only retrieves the token, not managing scheduling or calendar events.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"clientId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_fetch_schedule_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/schedule/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "schedule",
            "by",
            "id"
          ]
        },
        "description": "Fetches comprehensive details for a specific, existing schedule using its `scheduleid`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"scheduleId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_fetch_user_schedule_by_org_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/user/schedule/by/org/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "user",
            "schedule",
            "by",
            "org",
            "id"
          ]
        },
        "description": "Fetches a specific user's schedule, potentially including events and availability, using `orgid`, `userid`, and `scheduleid`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"orgId\": 0,\n  \"userId\": 0,\n  \"scheduleId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_fetch_webhook_by_event_type_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/webhook/by/event/type/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "webhook",
            "by",
            "event",
            "type",
            "id"
          ]
        },
        "description": "Retrieves details for a single, specific webhook using its `webhookid` and associated `eventtypeid`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"webhookId\": \"\",\n  \"eventTypeId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_force_refresh_user_oauth_client",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/force/refresh/user/oauth/client",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "force",
            "refresh",
            "user",
            "oauth",
            "client"
          ]
        },
        "description": "Forces an immediate refresh of oauth tokens for a specified user and client, bypassing the normal expiration cycle, typically when existing tokens are suspected to be invalid or fresh credentials are ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"userId\": 0,\n  \"clientId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_get_all_timezones",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/timezones",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "timezones"
          ]
        },
        "description": "Retrieves all supported time zone identifiers (e.g., 'america/new york', 'europe/london') and their associated metadata, excluding specific dst changes or precise utc offset details.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_get_available_slots_info",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/available/slots/info",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "available",
            "slots",
            "info"
          ]
        },
        "description": "Retrieves available time slots for scheduling by considering existing bookings and availability, based on criteria like a specified time range and event type.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"endTime\": \"\",\n  \"orgSlug\": \"\",\n  \"duration\": 0,\n  \"timeZone\": \"\",\n  \"startTime\": \"\",\n  \"slotFormat\": \"\",\n  \"eventTypeId\": 0,\n  \"usernameList\": \"\",\n  \"eventTypeSlug\": \"\",\n  \"rescheduleUid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_get_conference_oauth_authorization_url",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/conference/oauth/authorization/url",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "conference",
            "oauth",
            "authorization",
            "url"
          ]
        },
        "description": "Generates an oauth 2.0 authorization url for a supported conferencing `app` to initiate or refresh its integration with cal.com.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"app\": \"\",\n  \"returnTo\": \"\",\n  \"onErrorReturnTo\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_get_default_schedule_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/default/schedule/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "default",
            "schedule",
            "details"
          ]
        },
        "description": "Retrieves the cal system's global default schedule configuration, not custom or user-specific ones.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_get_event_type_by_team_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/event/type/by/team/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "event",
            "type",
            "by",
            "team",
            "id"
          ]
        },
        "description": "Retrieves a specific event type by its id, requiring that the event type is associated with the given team id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"teamId\": 0,\n  \"eventTypeId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_get_google_calendar_oauth_authentication_url",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/google/calendar/oauth/authentication/url",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "google",
            "calendar",
            "oauth",
            "authentication",
            "url"
          ]
        },
        "description": "Generates the initial google calendar oauth 2.0 authorization url for user redirection to begin the authentication and authorization process.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_get_oauth_clients_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/oauth/clients/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "oauth",
            "clients",
            "user"
          ]
        },
        "description": "Retrieves users associated with a specific oauth client (identified by a valid `clientid`) for auditing access or managing permissions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"clientId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_get_organization_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organization/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organization",
            "id"
          ]
        },
        "description": "Retrieves all organization ids associated with the currently authenticated user.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_get_organization_schedules",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organization/schedules",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organization",
            "schedules"
          ]
        },
        "description": "Retrieves a list of schedules (e.g., events, appointments) for an organization, providing basic schedule information, not detailed individual event data.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"skip\": 0,\n  \"take\": 0,\n  \"orgId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_get_organization_teams_event_types",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organization/teams/event/types",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organization",
            "teams",
            "event",
            "types"
          ]
        },
        "description": "Retrieves event types, including names, durations, and custom settings for team scheduling, for all teams within an existing organization specified by `orgid`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"skip\": 0,\n  \"take\": 0,\n  \"orgId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_get_organization_user_schedules",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organization/user/schedules",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organization",
            "user",
            "schedules"
          ]
        },
        "description": "Fetches all schedule information for a specific user within an organization; handle potential pagination for extensive schedules.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"orgId\": 0,\n  \"userId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_get_schedule_for_user_in_team",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/schedule/for/user/in/team",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "schedule",
            "for",
            "user",
            "in",
            "team"
          ]
        },
        "description": "Fetches all scheduled events or appointments for a specified user within their team and organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"orgId\": 0,\n  \"teamId\": 0,\n  \"userId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_get_stripe_connect_info",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/stripe/connect/info",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "stripe",
            "connect",
            "info"
          ]
        },
        "description": "Retrieves stripe connect account details (id, charges/payouts status, verification, settings) for the user's linked cal.com account; response may be empty or indicate no integration if no account is l",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_get_team_details_by_org_id_and_team_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/team/details/by/org/id/and/team/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "team",
            "details",
            "by",
            "org",
            "id",
            "and",
            "team",
            "id"
          ]
        },
        "description": "Retrieves comprehensive details (e.g., members, roles, metadata) for a specific team using its `teamid` within an organization specified by `orgid`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"orgId\": 0,\n  \"teamId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_get_team_information_by_team_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/team/information/by/team/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "team",
            "information",
            "by",
            "team",
            "id"
          ]
        },
        "description": "Fetches comprehensive details for an existing team using its unique id; returned fields may vary by team configuration and user permissions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"teamId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_get_teams_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/teams/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "teams",
            "list"
          ]
        },
        "description": "Retrieves all teams the user belongs to, including their names and members.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_get_webhook_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/webhook/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "webhook",
            "by",
            "id"
          ]
        },
        "description": "Retrieves details for an existing and accessible webhook by its id; this is a read-only operation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"webhookId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_handle_conferencing_oauth_callback_for_app",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/handle/conferencing/oauth/callback/for/app",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "handle",
            "conferencing",
            "oauth",
            "callback",
            "for",
            "app"
          ]
        },
        "description": "Processes an oauth 2.0 callback for a conferencing `app`, exchanging the `code` and `state` for access credentials; ensure an oauth flow was previously initiated.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"app\": \"\",\n  \"code\": \"\",\n  \"state\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_list_event_types",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/event/types",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "event",
            "types"
          ]
        },
        "description": "Retrieves cal event types, filterable by `username` (required if `eventslug` is provided), multiple `usernames`, or organization details (`orgslug` or `orgid`).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"orgId\": 0,\n  \"orgSlug\": \"\",\n  \"username\": \"\",\n  \"eventSlug\": \"\",\n  \"usernames\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_list_organization_memberships",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/organization/memberships",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "organization",
            "memberships"
          ]
        },
        "description": "Retrieves all memberships for a given organization, including user details, roles, status, and membership dates.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"skip\": 0,\n  \"take\": 0,\n  \"orgId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_list_team_event_types_by_org_and_team_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/team/event/types/by/org/and/team/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "team",
            "event",
            "types",
            "by",
            "org",
            "and",
            "team",
            "id"
          ]
        },
        "description": "Retrieves all event types for a specific team within an organization, optionally filtering by a specific event slug.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"orgId\": 0,\n  \"teamId\": 0,\n  \"eventSlug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_mark_booking_absent_for_uid",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/mark/booking/absent/for/uid",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "mark",
            "booking",
            "absent",
            "for",
            "uid"
          ]
        },
        "description": "Marks the host and/or specified attendees as absent for an existing booking, typically used after a scheduled event to record no-shows.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"host\": false,\n  \"attendees\": \"\",\n  \"bookingUid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_modify_org_attribute_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/modify/org/attribute/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "modify",
            "org",
            "attribute",
            "by",
            "id"
          ]
        },
        "description": "Partially updates an organization attribute using `orgid` and `attributeid`, allowing modification of its name, slug, type, or enabled status; changing the 'type' may affect existing data.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"slug\": \"\",\n  \"type\": \"\",\n  \"orgId\": 0,\n  \"enabled\": false,\n  \"attributeId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_modify_organization_membership_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/modify/organization/membership/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "modify",
            "organization",
            "membership",
            "by",
            "id"
          ]
        },
        "description": "Updates an organization membership's status (accepted), role, or impersonation settings, identified by `orgid` and `membershipid` in the path; requires at least one of these fields in the request to a",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"role\": \"\",\n  \"orgId\": 0,\n  \"accepted\": false,\n  \"membershipId\": 0,\n  \"disableImpersonation\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_patch_organization_attribute_option",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/patch/organization/attribute/option",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "patch",
            "organization",
            "attribute",
            "option"
          ]
        },
        "description": "Partially updates a specific option for an organization's attribute, modifying its 'value' and/or 'slug'; at least one of 'value' or 'slug' must be provided.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"slug\": \"\",\n  \"orgId\": 0,\n  \"value\": \"\",\n  \"optionId\": \"\",\n  \"attributeId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_patch_organization_user_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/patch/organization/user/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "patch",
            "organization",
            "user",
            "details"
          ]
        },
        "description": "Partially updates details for a user that exists within the specified organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"orgId\": 0,\n  \"userId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_patch_team_details_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/patch/team/details/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "patch",
            "team",
            "details",
            "by",
            "id"
          ]
        },
        "description": "Updates specified details for an existing team identified by `teamid`; unspecified fields remain unchanged.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"bio\": \"\",\n  \"name\": \"\",\n  \"slug\": \"\",\n  \"theme\": \"\",\n  \"teamId\": 0,\n  \"appLogo\": \"\",\n  \"logoUrl\": \"\",\n  \"metadata\": \"\",\n  \"timeZone\": \"\",\n  \"bannerUrl\": \"\",\n  \"isPrivate\": false,\n  \"weekStart\": \"\",\n  \"brandColor\": \"\",\n  \"timeFormat\": 0,\n  \"appIconLogo\": \"\",\n  \"calVideoLogo\": \"\",\n  \"hideBranding\": false,\n  \"bookingLimits\": \"\",\n  \"darkBrandColor\": \"\",\n  \"hideBookATeamMember\": false,\n  \"includeManagedEventsInLimits\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_patch_webhook_event_type",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/patch/webhook/event/type",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "patch",
            "webhook",
            "event",
            "type"
          ]
        },
        "description": "Updates configuration (e.g., payload template, active status, url, triggers, secret) for an existing webhook tied to a specific event type.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"active\": false,\n  \"secret\": \"\",\n  \"triggers\": \"\",\n  \"webhookId\": \"\",\n  \"eventTypeId\": 0,\n  \"subscriberUrl\": \"\",\n  \"payloadTemplate\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_post_calendar_credentials",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/post/calendar/credentials",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "post",
            "calendar",
            "credentials"
          ]
        },
        "description": "Use to submit/update authentication credentials (passed in the request body) for an existing calendar, enabling cal to connect with external calendar services for synchronization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"calendar\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_post_conferencing_app_connect",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/post/conferencing/app/connect",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "post",
            "conferencing",
            "app",
            "connect"
          ]
        },
        "description": "Connects or reconnects cal.com with a specified conferencing application to enable future virtual meeting scheduling, but does not itself create or schedule meetings.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"app\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_post_new_booking_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/post/new/booking/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "post",
            "new",
            "booking",
            "request"
          ]
        },
        "description": "Creates a new booking for an active event type, scheduling it for a specified start time (preferably in the future) with primary attendee details and optional customizations.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"start\": \"\",\n  \"guests\": \"\",\n  \"attendee\": {},\n  \"location\": {},\n  \"metadata\": {},\n  \"eventTypeId\": 0,\n  \"lengthInMinutes\": 0,\n  \"bookingFieldsResponses\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_post_org_attribute_option_by_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/post/org/attribute/option/by/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "post",
            "org",
            "attribute",
            "option",
            "by",
            "user"
          ]
        },
        "description": "Assigns an existing attribute option (using `attributeoptionid`) or creates a new one (using `value`) for a user, linking it to a specified `attributeid` which must already exist within the organizati",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"orgId\": 0,\n  \"value\": \"\",\n  \"userId\": 0,\n  \"attributeId\": \"\",\n  \"attributeOptionId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_post_selected_calendars",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/post/selected/calendars",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "post",
            "selected",
            "calendars"
          ]
        },
        "description": "Links a new external calendar or updates an existing link to one, enabling synchronization with the cal application by specifying the `integration` provider, the calendar's `externalid`, and the `cred",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"externalId\": \"\",\n  \"integration\": \"\",\n  \"credentialId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_post_user_to_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/post/user/to/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "post",
            "user",
            "to",
            "organization"
          ]
        },
        "description": "Adds a new user to an existing organization (identified by `orgid` in path), requiring user's `email` and allowing extensive optional profile customization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"orgId\": 0,\n  \"theme\": \"\",\n  \"locale\": \"\",\n  \"weekday\": \"\",\n  \"appTheme\": \"\",\n  \"timeZone\": \"\",\n  \"username\": \"\",\n  \"avatarUrl\": \"\",\n  \"autoAccept\": false,\n  \"brandColor\": \"\",\n  \"timeFormat\": 0,\n  \"hideBranding\": false,\n  \"darkBrandColor\": \"\",\n  \"organizationRole\": \"\",\n  \"defaultScheduleId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_post_webhook_event",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/post/webhook/event",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "post",
            "webhook",
            "event"
          ]
        },
        "description": "Creates a new cal.com webhook subscription to send real-time notifications for specified calendar events to a publicly accessible subscriber url.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"active\": false,\n  \"secret\": \"\",\n  \"triggers\": \"\",\n  \"subscriberUrl\": \"\",\n  \"payloadTemplate\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_reassign_booking_to_another_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/reassign/booking/to/another/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "reassign",
            "booking",
            "to",
            "another",
            "user"
          ]
        },
        "description": "Reassigns an existing, active booking to a specified, authorized user; does not notify participants of this change.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"reason\": \"\",\n  \"userId\": 0,\n  \"bookingUid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_reassign_booking_with_uid",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/reassign/booking/with/uid",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "reassign",
            "booking",
            "with",
            "uid"
          ]
        },
        "description": "Reassigns the specified booking to a new team member, who is determined by the system rather than being specified in the request.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"bookingUid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_refresh_oauth_token_for_client_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/refresh/oauth/token/for/client/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "refresh",
            "oauth",
            "token",
            "for",
            "client",
            "id"
          ]
        },
        "description": "Refreshes an oauth access token for a specified `clientid` and managed user using their `refreshtoken`, enabling continued api access when the current token is near or past expiry.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"clientId\": \"\",\n  \"refreshToken\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_reschedule_booking_by_uid",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/reschedule/booking/by/uid",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "reschedule",
            "booking",
            "by",
            "uid"
          ]
        },
        "description": "Reschedules an existing booking (identified by `bookinguid`) to a new time, provided the new slot's availability is confirmed beforehand; all other rescheduling parameters (e.g., new date, time) must ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"bookingUid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_reserve_slot_for_event",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/reserve/slot/for/event",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "reserve",
            "slot",
            "for",
            "event"
          ]
        },
        "description": "Temporarily reserves an available time slot for an existing and bookable event type, useful for high-demand slots to prevent double-bookings while the user completes the booking.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"bookingUid\": \"\",\n  \"eventTypeId\": 0,\n  \"slotUtcEndDate\": \"\",\n  \"slotUtcStartDate\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_retrieve_attribute_options_for_org",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/attribute/options/for/org",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "attribute",
            "options",
            "for",
            "org"
          ]
        },
        "description": "Retrieves all available options for a specific attribute within a designated organization, requiring valid and associated `orgid` and `attributeid`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"orgId\": 0,\n  \"attributeId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_retrieve_booking_details_by_uid",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/booking/details/by/uid",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "booking",
            "details",
            "by",
            "uid"
          ]
        },
        "description": "Fetches comprehensive details for an existing booking, identified by its `bookinguid`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"bookingUid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_retrieve_calendar_busy_times",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/calendar/busy/times",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "calendar",
            "busy",
            "times"
          ]
        },
        "description": "To find busy calendar slots for scheduling/conflict detection, call this with a valid `credentialid`, an `externalid` accessible by it, and a recognized iana `loggedinuserstz`; returns only busy inter",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dateTo\": \"\",\n  \"dateFrom\": \"\",\n  \"externalId\": \"\",\n  \"credentialId\": 0,\n  \"loggedInUsersTz\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_retrieve_calendar_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/calendar/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "calendar",
            "list"
          ]
        },
        "description": "Retrieves a list of all calendar summaries (no event details) associated with the authenticated user's account.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_retrieve_current_team_for_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/current/team/for/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "current",
            "team",
            "for",
            "organization"
          ]
        },
        "description": "Retrieves details of the team(s) for the currently authenticated user within the specified organization `orgid`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"skip\": 0,\n  \"take\": 0,\n  \"orgId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_retrieve_default_conferencing_settings",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/default/conferencing/settings",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "default",
            "conferencing",
            "settings"
          ]
        },
        "description": "Retrieves an account's or organization's read-only default conferencing settings in cal.com (e.g., video platform, meeting duration) to inform event creation or ensure consistency.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_retrieve_event_type_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/event/type/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "event",
            "type",
            "by",
            "id"
          ]
        },
        "description": "Retrieves comprehensive details for a specific, existing cal.com event type using its unique id; this is a read-only action and does not return associated events or bookings.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"eventTypeId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_retrieve_membership_from_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/membership/from/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "membership",
            "from",
            "organization"
          ]
        },
        "description": "Retrieves detailed information about a specific membership within a particular organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"orgId\": 0,\n  \"membershipId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_retrieve_my_information",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/my/information",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "my",
            "information"
          ]
        },
        "description": "Retrieves the authenticated user's core profile information (e.g., name, email, timezone); does not retrieve related data like calendar events or schedules.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_retrieve_oauth_client_user_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/oauth/client/user/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "oauth",
            "client",
            "user",
            "by",
            "id"
          ]
        },
        "description": "Retrieves detailed information for an existing user specifically associated with an existing oauth client.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"userId\": 0,\n  \"clientId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_retrieve_oauth_client_webhook_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/oauth/client/webhook/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "oauth",
            "client",
            "webhook",
            "by",
            "id"
          ]
        },
        "description": "Retrieves a specific webhook using its `webhookid` and the `clientid` of its associated oauth client.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"clientId\": \"\",\n  \"webhookId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_retrieve_organization_attributes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/organization/attributes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "organization",
            "attributes"
          ]
        },
        "description": "Retrieves detailed attributes (e.g., configurations, settings, metadata) for an organization, identified by its `orgid`, which must correspond to an existing organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"skip\": 0,\n  \"take\": 0,\n  \"orgId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_retrieve_organization_attributes_options",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/organization/attributes/options",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "organization",
            "attributes",
            "options"
          ]
        },
        "description": "Fetches all available attribute options for a specific user within a given organization, provided the organization and user exist and the user is part of the organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"orgId\": 0,\n  \"userId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_retrieve_organization_webhook_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/organization/webhook/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "organization",
            "webhook",
            "by",
            "id"
          ]
        },
        "description": "Retrieves detailed information, including configuration and status, for a specific webhook by its id (`webhookid`) within a given organization (`orgid`).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"orgId\": 0,\n  \"webhookId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_retrieve_organization_webhooks_by_org_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/organization/webhooks/by/org/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "organization",
            "webhooks",
            "by",
            "org",
            "id"
          ]
        },
        "description": "Retrieves a list of webhooks for an organization specified by `orgid`, supporting pagination; this is a read-only operation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"skip\": 0,\n  \"take\": 0,\n  \"orgId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_retrieve_provider_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/provider/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "provider",
            "details"
          ]
        },
        "description": "Retrieves detailed information for an existing provider in the cal scheduling system using their unique client id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"clientId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_retrieve_schedules_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/schedules/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "schedules",
            "list"
          ]
        },
        "description": "Retrieves a comprehensive list of all schedules associated with the authenticated user's cal.com account or organization.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_retrieve_team_details_in_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/team/details/in/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "team",
            "details",
            "in",
            "organization"
          ]
        },
        "description": "Retrieves a paginated list of teams and their details for a specific organization id; individual team member details or schedules are not included.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"skip\": 0,\n  \"take\": 0,\n  \"orgId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_retrieve_team_event_types",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/team/event/types",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "team",
            "event",
            "types"
          ]
        },
        "description": "Retrieves event types for a team within the cal scheduling system; this action does not provide details on scheduled instances or member availability.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"teamId\": 0,\n  \"eventSlug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_retrieve_team_membership_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/team/membership/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "team",
            "membership",
            "by",
            "id"
          ]
        },
        "description": "Retrieves detailed information, including role and status, for a specific team membership using its id, for a given organization and team.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"orgId\": 0,\n  \"teamId\": 0,\n  \"membershipId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_retrieve_team_membership_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/team/membership/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "team",
            "membership",
            "details"
          ]
        },
        "description": "Retrieves detailed attributes for a specific team membership by its id and the team id, such as member information, role, and status; does not list all team members.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"teamId\": 0,\n  \"membershipId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_retrieve_team_memberships",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/team/memberships",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "team",
            "memberships"
          ]
        },
        "description": "Retrieves a list of memberships, detailing member roles and statuses, for an existing team specified by `teamid`, with support for pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"skip\": 0,\n  \"take\": 0,\n  \"teamId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_retrieve_team_memberships_for_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/team/memberships/for/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "team",
            "memberships",
            "for",
            "organization"
          ]
        },
        "description": "Retrieves all user memberships, including their roles and states, for a specific team within an organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"skip\": 0,\n  \"take\": 0,\n  \"orgId\": 0,\n  \"teamId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_retrieve_users_in_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/users/in/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "users",
            "in",
            "organization"
          ]
        },
        "description": "Retrieves users associated with a specific organization id, excluding individual scheduling or calendar data; the `orgid` must be a valid identifier for an existing organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"skip\": 0,\n  \"take\": 0,\n  \"orgId\": 0,\n  \"emails\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_retrieve_v2_conferencing_info",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/v2/conferencing/info",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "v2",
            "conferencing",
            "info"
          ]
        },
        "description": "Retrieves an authenticated cal user's or organization's video conferencing configurations, capabilities, and installed apps, useful for understanding options before scheduling or verifying setups; pro",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_retrieve_webhook_details_for_oauth_client",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/webhook/details/for/oauth/client",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "webhook",
            "details",
            "for",
            "oauth",
            "client"
          ]
        },
        "description": "Retrieves a list of webhooks for a specific oauth client, supporting pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"skip\": 0,\n  \"take\": 0,\n  \"clientId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_retrieve_webhooks_for_event_type",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/webhooks/for/event/type",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "webhooks",
            "for",
            "event",
            "type"
          ]
        },
        "description": "Retrieves a paginated list of webhooks (including urls, subscribed events, and status) for a specified, existing event type id, useful for auditing configurations or troubleshooting.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"skip\": 0,\n  \"take\": 0,\n  \"eventTypeId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_retrieve_webhooks_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/webhooks/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "webhooks",
            "list"
          ]
        },
        "description": "Retrieves a paginated list of webhooks from the user's cal scheduling system account, which are used for real-time notifications on events like new bookings, cancellations, or updates.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"skip\": 0,\n  \"take\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_save_calendar_entry",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/save/calendar/entry",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "save",
            "calendar",
            "entry"
          ]
        },
        "description": "Saves or updates a calendar's settings using a get request, typically for data already on the server or simple updates via query parameters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"code\": \"\",\n  \"state\": \"\",\n  \"calendar\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_save_calendar_ics_feeds",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/save/calendar/ics/feeds",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "save",
            "calendar",
            "ics",
            "feeds"
          ]
        },
        "description": "Imports and saves one or more publicly accessible external icalendar (ics) feed urls into the cal.com calendar system.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"urls\": \"\",\n  \"readOnly\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_save_oauth_credentials_via_gcal_api",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/save/oauth/credentials/via/gcal/api",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "save",
            "oauth",
            "credentials",
            "via",
            "gcal",
            "api"
          ]
        },
        "description": "Completes the google calendar oauth 2.0 flow by exchanging the `code` and `state` (received from google's redirect after user consent) for access and refresh tokens.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"code\": \"\",\n  \"state\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_save_stripe_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/save/stripe/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "save",
            "stripe",
            "details"
          ]
        },
        "description": "Completes the stripe oauth flow by saving stripe details; call this when a user is redirected back from stripe with an authorization `code` and `state`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"code\": \"\",\n  \"state\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_set_default_conferencing_app",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/default/conferencing/app",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "default",
            "conferencing",
            "app"
          ]
        },
        "description": "Sets the specified, valid, and configured conferencing application as the default for new meetings for the authenticated user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"app\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_update_destination_calendar_integration",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/destination/calendar/integration",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "destination",
            "calendar",
            "integration"
          ]
        },
        "description": "Updates the destination calendar for syncing events, using `integration` and `externalid` (typically from `/calendars` endpoint).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"externalId\": \"\",\n  \"integration\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_update_oauth_client_user_settings",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/oauth/client/user/settings",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "oauth",
            "client",
            "user",
            "settings"
          ]
        },
        "description": "Updates specified profile and scheduling preference fields for a user associated with an oauth client; `defaultscheduleid`, if provided, must be an existing, valid schedule for the user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"email\": \"\",\n  \"locale\": \"\",\n  \"userId\": 0,\n  \"clientId\": \"\",\n  \"timeZone\": \"\",\n  \"avatarUrl\": \"\",\n  \"weekStart\": \"\",\n  \"timeFormat\": 0,\n  \"defaultScheduleId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_update_oauth_client_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/oauth/client/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "oauth",
            "client",
            "webhook"
          ]
        },
        "description": "Updates specified properties of an existing webhook for an oauth client; omitted fields remain unchanged.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"active\": false,\n  \"secret\": \"\",\n  \"clientId\": \"\",\n  \"triggers\": \"\",\n  \"webhookId\": \"\",\n  \"subscriberUrl\": \"\",\n  \"payloadTemplate\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_update_schedule_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/schedule/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "schedule",
            "by",
            "id"
          ]
        },
        "description": "Updates an existing schedule by its id, allowing partial modification of properties; providing `availability` or `overrides` replaces them entirely.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"timeZone\": \"\",\n  \"isDefault\": false,\n  \"overrides\": \"\",\n  \"scheduleId\": \"\",\n  \"availability\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_update_team_information_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/team/information/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "team",
            "information",
            "by",
            "id"
          ]
        },
        "description": "Updates an existing team's information by its id within a specified organization; the `slug`, if provided, must be unique within the organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"bio\": \"\",\n  \"name\": \"\",\n  \"slug\": \"\",\n  \"orgId\": 0,\n  \"theme\": \"\",\n  \"teamId\": 0,\n  \"appLogo\": \"\",\n  \"logoUrl\": \"\",\n  \"metadata\": \"\",\n  \"timeZone\": \"\",\n  \"bannerUrl\": \"\",\n  \"isPrivate\": false,\n  \"weekStart\": \"\",\n  \"brandColor\": \"\",\n  \"timeFormat\": 0,\n  \"appIconLogo\": \"\",\n  \"calVideoLogo\": \"\",\n  \"hideBranding\": false,\n  \"bookingLimits\": \"\",\n  \"darkBrandColor\": \"\",\n  \"hideBookATeamMember\": false,\n  \"includeManagedEventsInLimits\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_update_team_membership_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/team/membership/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "team",
            "membership",
            "by",
            "id"
          ]
        },
        "description": "Updates specified properties (e.g., acceptance status, role, impersonation settings) of an existing team membership, identified by `teamid` and `membershipid`, supporting partial updates where only pr",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"role\": \"\",\n  \"teamId\": 0,\n  \"accepted\": false,\n  \"membershipId\": 0,\n  \"disableImpersonation\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_update_team_membership_properties",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/team/membership/properties",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "team",
            "membership",
            "properties"
          ]
        },
        "description": "Updates attributes like acceptance status, role, or impersonation settings for an existing team membership; only provided fields are changed, and this action cannot create or delete memberships.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"role\": \"\",\n  \"orgId\": 0,\n  \"teamId\": 0,\n  \"accepted\": false,\n  \"membershipId\": 0,\n  \"disableImpersonation\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_update_user_profile_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/user/profile/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "user",
            "profile",
            "details"
          ]
        },
        "description": "Updates the profile information and preferences for the authenticated user, affecting only the fields provided in the request.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"email\": \"\",\n  \"locale\": \"\",\n  \"timeZone\": \"\",\n  \"avatarUrl\": \"\",\n  \"weekStart\": \"\",\n  \"timeFormat\": 0,\n  \"defaultScheduleId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_update_user_schedule_in_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/user/schedule/in/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "user",
            "schedule",
            "in",
            "organization"
          ]
        },
        "description": "Modifies an existing schedule for a specified user within an organization by updating only the provided fields; the organization, user, and schedule must already exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"orgId\": 0,\n  \"userId\": 0,\n  \"timeZone\": \"\",\n  \"isDefault\": false,\n  \"overrides\": \"\",\n  \"scheduleId\": 0,\n  \"availability\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_update_webhook_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/webhook/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "webhook",
            "by",
            "id"
          ]
        },
        "description": "Updates an existing cal.com webhook by its `webhookid`, allowing partial modification of its attributes; only explicitly provided fields will be changed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"active\": false,\n  \"secret\": \"\",\n  \"triggers\": \"\",\n  \"webhookId\": \"\",\n  \"subscriberUrl\": \"\",\n  \"payloadTemplate\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cal_update_webhook_for_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/webhook/for/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "webhook",
            "for",
            "organization"
          ]
        },
        "description": "Use this action to modify settings of an already created webhook for an organization, such as its target url, active status, or the events that trigger it.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"orgId\": 0,\n  \"active\": false,\n  \"secret\": \"\",\n  \"triggers\": \"\",\n  \"webhookId\": \"\",\n  \"subscriberUrl\": \"\",\n  \"payloadTemplate\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}