Sweep Scheduling Dashboard API

The Scheduling Dashboard API from Sweep — 18 operation(s) for scheduling dashboard.

Operations 29

GET /scheduling-dashboard/team-calendars #
PUT /scheduling-dashboard/team-calendars/{userId}/working-hours #
POST /scheduling-dashboard/team-calendars/invite #
GET /scheduling-dashboard/meeting-types #
POST /scheduling-dashboard/meeting-types #
PATCH /scheduling-dashboard/meeting-types/{meetingTypeId} #
DELETE /scheduling-dashboard/meeting-types/{meetingTypeId} #
GET /scheduling-dashboard/forms #
POST /scheduling-dashboard/forms #
PUT /scheduling-dashboard/forms/{formId} #
DELETE /scheduling-dashboard/forms/{formId} #
GET /scheduling-dashboard/routing-rules/{routingRuleId}/usage #
POST /scheduling-dashboard/routing-rules/{routingRuleId}/deactivate-dependents #
GET /scheduling-dashboard/connected-users #
GET /scheduling-dashboard/settings/data-fields #
POST /scheduling-dashboard/settings/data-fields #
PATCH /scheduling-dashboard/settings/data-fields/{fieldId} #
DELETE /scheduling-dashboard/settings/data-fields/{fieldId} #
GET /scheduling-dashboard/settings/default-hours #
PUT /scheduling-dashboard/settings/default-hours #
GET /scheduling-dashboard/settings/branding #
PUT /scheduling-dashboard/settings/branding #
GET /scheduling-dashboard/settings/integrations #
PUT /scheduling-dashboard/settings/integrations #
GET /scheduling-dashboard/logs/{sourceType}/{sourceId} #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/sweep-scheduling-dashboard-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

sweep-scheduling-dashboard-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Sweep Scheduling Dashboard API
  description: This is a publicly available Sweep API.
  version: '0.1'
  contact: {}
servers:
- url: https://api.sweep.io
  description: Sweep production API — the host this document was harvested from (GET /api-json); /health responds here
tags:
- name: Scheduling Dashboard
paths:
  /scheduling-dashboard/team-calendars:
    get:
      operationId: SchedulingDashboardController_getTeamCalendars
      parameters:
      - name: crmOrgId
        required: true
        in: query
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
      security:
      - bearer: []
      tags:
      - Scheduling Dashboard
  /scheduling-dashboard/team-calendars/{userId}/working-hours:
    put:
      operationId: SchedulingDashboardController_updateWorkingHours
      parameters:
      - name: crmOrgId
        required: true
        in: query
        schema:
          type: string
      - name: userId
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
      security:
      - bearer: []
      tags:
      - Scheduling Dashboard
  /scheduling-dashboard/team-calendars/invite:
    post:
      operationId: SchedulingDashboardController_sendInvite
      parameters:
      - name: crmOrgId
        required: true
        in: query
        schema:
          type: string
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                type: object
      security:
      - bearer: []
      tags:
      - Scheduling Dashboard
  /scheduling-dashboard/meeting-types:
    get:
      operationId: SchedulingDashboardController_listMeetingTypes
      parameters:
      - name: crmOrgId
        required: true
        in: query
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
      security:
      - bearer: []
      tags:
      - Scheduling Dashboard
    post:
      operationId: SchedulingDashboardController_createMeetingType
      parameters:
      - name: crmOrgId
        required: true
        in: query
        schema:
          type: string
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                type: object
      security:
      - bearer: []
      tags:
      - Scheduling Dashboard
  /scheduling-dashboard/meeting-types/{meetingTypeId}:
    patch:
      operationId: SchedulingDashboardController_updateMeetingType
      parameters:
      - name: crmOrgId
        required: true
        in: query
        schema:
          type: string
      - name: meetingTypeId
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
      security:
      - bearer: []
      tags:
      - Scheduling Dashboard
    delete:
      operationId: SchedulingDashboardController_deleteMeetingType
      parameters:
      - name: crmOrgId
        required: true
        in: query
        schema:
          type: string
      - name: meetingTypeId
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
      security:
      - bearer: []
      tags:
      - Scheduling Dashboard
  /scheduling-dashboard/forms:
    get:
      operationId: SchedulingDashboardController_listForms
      parameters:
      - name: crmOrgId
        required: true
        in: query
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
      security:
      - bearer: []
      tags:
      - Scheduling Dashboard
    post:
      operationId: SchedulingDashboardController_createForm
      parameters:
      - name: crmOrgId
        required: true
        in: query
        schema:
          type: string
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                type: object
      security:
      - bearer: []
      tags:
      - Scheduling Dashboard
  /scheduling-dashboard/forms/{formId}:
    put:
      operationId: SchedulingDashboardController_updateForm
      parameters:
      - name: crmOrgId
        required: true
        in: query
        schema:
          type: string
      - name: formId
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
      security:
      - bearer: []
      tags:
      - Scheduling Dashboard
    delete:
      operationId: SchedulingDashboardController_deleteForm
      parameters:
      - name: crmOrgId
        required: true
        in: query
        schema:
          type: string
      - name: formId
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
      security:
      - bearer: []
      tags:
      - Scheduling Dashboard
  /scheduling-dashboard/booking-links:
    get:
      operationId: SchedulingDashboardController_listBookingLinks
      parameters:
      - name: crmOrgId
        required: true
        in: query
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
      security:
      - bearer: []
      tags:
      - Scheduling Dashboard
    post:
      operationId: SchedulingDashboardController_createBookingLink
      parameters:
      - name: crmOrgId
        required: true
        in: query
        schema:
          type: string
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                type: object
      security:
      - bearer: []
      tags:
      - Scheduling Dashboard
  /scheduling-dashboard/booking-links/{linkId}:
    put:
      operationId: SchedulingDashboardController_updateBookingLink
      parameters:
      - name: crmOrgId
        required: true
        in: query
        schema:
          type: string
      - name: linkId
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
      security:
      - bearer: []
      tags:
      - Scheduling Dashboard
    delete:
      operationId: SchedulingDashboardController_deleteBookingLink
      parameters:
      - name: crmOrgId
        required: true
        in: query
        schema:
          type: string
      - name: linkId
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
      security:
      - bearer: []
      tags:
      - Scheduling Dashboard
  /scheduling-dashboard/routing-rules/{routingRuleId}/usage:
    get:
      operationId: SchedulingDashboardController_getRoutingRuleUsage
      parameters:
      - name: crmOrgId
        required: true
        in: query
        schema:
          type: string
      - name: routingRuleId
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
      security:
      - bearer: []
      tags:
      - Scheduling Dashboard
  /scheduling-dashboard/routing-rules/{routingRuleId}/deactivate-dependents:
    post:
      operationId: SchedulingDashboardController_deactivateRoutingRuleDependents
      parameters:
      - name: crmOrgId
        required: true
        in: query
        schema:
          type: string
      - name: routingRuleId
        required: true
        in: path
        schema:
          type: string
      responses:
        '201':
          description: ''
      security:
      - bearer: []
      tags:
      - Scheduling Dashboard
  /scheduling-dashboard/connected-users:
    get:
      operationId: SchedulingDashboardController_getConnectedUsers
      parameters:
      - name: crmOrgId
        required: true
        in: query
        schema:
          type: string
      responses:
        '200':
          description: ''
      security:
      - bearer: []
      tags:
      - Scheduling Dashboard
  /scheduling-dashboard/settings/data-fields:
    get:
      operationId: SchedulingDashboardController_getDataFields
      parameters:
      - name: crmOrgId
        required: true
        in: query
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
      security:
      - bearer: []
      tags:
      - Scheduling Dashboard
    post:
      operationId: SchedulingDashboardController_addDataField
      parameters:
      - name: crmOrgId
        required: true
        in: query
        schema:
          type: string
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                type: object
      security:
      - bearer: []
      tags:
      - Scheduling Dashboard
  /scheduling-dashboard/settings/data-fields/{fieldId}:
    patch:
      operationId: SchedulingDashboardController_updateDataField
      parameters:
      - name: crmOrgId
        required: true
        in: query
        schema:
          type: string
      - name: fieldId
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
      security:
      - bearer: []
      tags:
      - Scheduling Dashboard
    delete:
      operationId: SchedulingDashboardController_deleteDataField
      parameters:
      - name: crmOrgId
        required: true
        in: query
        schema:
          type: string
      - name: fieldId
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
      security:
      - bearer: []
      tags:
      - Scheduling Dashboard
  /scheduling-dashboard/settings/default-hours:
    get:
      operationId: SchedulingDashboardController_getDefaultHours
      parameters:
      - name: crmOrgId
        required: true
        in: query
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
      security:
      - bearer: []
      tags:
      - Scheduling Dashboard
    put:
      operationId: SchedulingDashboardController_updateDefaultHours
      parameters:
      - name: crmOrgId
        required: true
        in: query
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
      security:
      - bearer: []
      tags:
      - Scheduling Dashboard
  /scheduling-dashboard/settings/branding:
    get:
      operationId: SchedulingDashboardController_getBranding
      parameters:
      - name: crmOrgId
        required: true
        in: query
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
      security:
      - bearer: []
      tags:
      - Scheduling Dashboard
    put:
      operationId: SchedulingDashboardController_updateBranding
      parameters:
      - name: crmOrgId
        required: true
        in: query
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
      security:
      - bearer: []
      tags:
      - Scheduling Dashboard
  /scheduling-dashboard/settings/integrations:
    get:
      operationId: SchedulingDashboardController_getIntegrationSettings
      parameters:
      - name: crmOrgId
        required: true
        in: query
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
      security:
      - bearer: []
      tags:
      - Scheduling Dashboard
    put:
      operationId: SchedulingDashboardController_updateIntegrationSettings
      parameters:
      - name: crmOrgId
        required: true
        in: query
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateIntegrationSettingsDto'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
      security:
      - bearer: []
      tags:
      - Scheduling Dashboard
  /scheduling-dashboard/logs/{sourceType}/{sourceId}:
    get:
      operationId: SchedulingDashboardController_getLogs
      parameters:
      - name: crmOrgId
        required: true
        in: query
        schema:
          type: string
      - name: sourceType
        required: true
        in: path
        schema:
          type: string
      - name: sourceId
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SchedulingSubmissionLog'
      security:
      - bearer: []
      tags:
      - Scheduling Dashboard
components:
  schemas:
    SchedulingSubmissionLog:
      type: object
      properties:
        id:
          type: string
        crmOrgId:
          type: string
        crmOrg:
          $ref: '#/components/schemas/CrmOrg'
        sourceType:
          type: object
        sourceId:
          type: string
        email:
          type: string
        referrerUrl:
          type:
          - string
          - 'null'
        status:
          type: object
        assignedToUserId:
          type:
          - string
          - 'null'
        assignedToName:
          type:
          - string
          - 'null'
        assignmentRuleType:
          type:
          - string
          - 'null'
        crmRecordId:
          type:
          - string
          - 'null'
        sessionToken:
          type:
          - string
          - 'null'
        capturedData:
          type:
          - object
          - 'null'
        errorMessage:
          type:
          - string
          - 'null'
        createdAt:
          format: date-time
          type: string
        updatedAt:
          format: date-time
          type: string
      required:
      - id
      - crmOrgId
      - crmOrg
      - sourceType
      - sourceId
      - email
      - referrerUrl
      - status
      - assignedToUserId
      - assignedToName
      - assignmentRuleType
      - crmRecordId
      - sessionToken
      - capturedData
      - errorMessage
      - createdAt
      - updatedAt
    SweepFieldReference:
      type: object
      properties:
        fieldIds:
          type: array
          items:
            type: string
        fieldSource:
          type: string
      required:
      - fieldIds
    FunnelDetailsDto:
      type: object
      properties:
        leadingObject:
          $ref: '#/components/schemas/LeadingObjectDto'
        stages:
          type: array
          items:
            $ref: '#/components/schemas/SweepStage'
        _firstStageId:
          type: string
        plugins:
          default: {}
          allOf:
          - $ref: '#/components/schemas/FunnelPluginsDto'
        funnelLinks:
          type: array
          items:
            $ref: '#/components/schemas/FunnelLinkDto'
        stageMetadata:
          type: array
          items:
            type: object
      required:
      - leadingObject
      - stages
      - plugins
    SweepAssignmentRule:
      type: object
      properties:
        assignmentId:
          type: string
        ruleName:
          type: string
        assignedTo:
          type: string
        assignedToType:
          type: string
        criteriaLogic:
          type: string
        criteria:
          type: array
          items:
            type: object
      required:
      - assignmentId
      - ruleName
      - assignedTo
      - assignedToType
      - criteriaLogic
      - criteria
    User:
      type: object
      properties:
        id:
          type: string
        sub:
          type: string
        email:
          type: string
        account:
          $ref: '#/components/schemas/Account'
        preferences:
          type: object
        name:
          type: string
        emoji:
          type: string
        imageUrl:
          type: string
        jobTitle:
          type: string
        roleGroup:
          $ref: '#/components/schemas/RoleGroup'
        roleGroupId:
          type: string
        createdAt:
          format: date-time
          type: string
        updatedAt:
          format: date-time
          type: string
        deletedAt:
          format: date-time
          type: string
        lastSeen:
          format: date-time
          type: string
      required:
      - id
      - sub
      - email
      - account
      - preferences
      - name
      - emoji
      - imageUrl
      - jobTitle
      - roleGroup
      - roleGroupId
      - createdAt
      - updatedAt
    SweepExitCriteria:
      type: object
      properties:
        _exitCriteriaId:
          type: string
        _nextStageId:
          type: string
        isAutoMoveToNextStage:
          type: boolean
        guidance:
          type: string
        criteria:
          type: array
          items:
            type: object
        criteriaLogic:
          type: string
      required:
      - _exitCriteriaId
      - criteria
      - criteriaLogic
    FunnelLinkDto:
      type: object
      properties:
        _id:
          type: string
        _type:
          type: string
          enum:
          - salesforce
          - thirdParty
          - recordType
          - hubspot
          - metadataElement
        funnelId:
          type: string
        stageId:
          type: string
      required:
      - _id
      - _type
      - funnelId
    FunnelSnapshot:
      type: object
      properties:
        id:
          type: string
        ord:
          type: number
        createdById:
          type: string
        createdBy:
          $ref: '#/components/schemas/User'
        apiName:
          type: string
        accountId:
          type: string
        account:
          $ref: '#/components/schemas/Account'
        name:
          type: string
        funnelName:
          type: string
        description:
          type: string
        recordTypeName:
          type: string
        restoredFromSnapshot:
          type: number
        funnelDetails:
          $ref: '#/components/schemas/FunnelDetailsDto'
        deployments:
          type: array
          items:
            $ref: '#/components/schemas/FunnelDeployment'
        createdAt:
          format: date-time
          type: string
      required:
      - id
      - ord
      - createdById
      - createdBy
      - apiName
      - accountId
      - account
      - name
      - funnelName
      - description
      - recordTypeName
      - restoredFromSnapshot
      - funnelDetails
      - deployments
      - createdAt
    RoleGroup:
      type: object
      properties:
        id:
          type: string
        accountId:
          type: string
        account:
          $ref: '#/components/schemas/Account'
        type:
          type: string
          enum:
          - SYSTEM
          - USER_CREATED
        accountRoles:
          type: array
          items:
            $ref: '#/components/schemas/RoleGroupAccountRole'
        orgRoles:
          type: array
          items:
            $ref: '#/components/schemas/RoleGroupOrgRole'
        createdById:
          type: string
        createdBy:
          $ref: '#/components/schemas/User'
        createdAt:
          format: date-time
          type: string
        updatedById:
          type: string
        updatedBy:
          $ref: '#/components/schemas/User'
        updatedAt:
          format: date-time
          type: string
        name:
          type: string
        description:
          type: string
      required:
      - id
      - accountId
      - account
      - type
      - accountRoles
      - orgRoles
      - createdById
      - createdBy
      - createdAt
      - updatedById
      - updatedBy
      - updatedAt
      - name
    LeadingObjectDto:
      type: object
      properties:
        objectName:
          type: string
        fieldName:
          type: string
        _leadingFieldLabels:
          type: array
          items:
            type: string
        _leadingFieldId:
          type: string
      required:
      - objectName
      - fieldName
      - _leadingFieldId
    RoleGroupAccountRole:
      type: object
      properties:
        role:
          type: object
        roleGroupId:
          type: string
        roleGroup:
          $ref: '#/components/schemas/RoleGroup'
      required:
      - role
      - roleGroupId
      - roleGroup
    FunnelDeployment:
      type: object
      properties:
        id:
          type: string
        crmOrgId:
          type: string
        crmOrg:
          $ref: '#/components/schemas/CrmOrg'
        snapshotId:
          type: string
        snapshot:
          $ref: '#/components/schemas/FunnelSnapshot'
        deployedById:
          type: string
        deployedBy:
          $ref: '#/components/schemas/User'
        deployedAt:
          format: date-time
          type: string
        status:
          type: object
      required:
      - id
      - crmOrgId
      - crmOrg
      - snapshotId
      - snapshot
      - deployedById
      - deployedBy
      - deployedAt
      - status
    CrmOrg:
      type: object
      properties:
        id:
          type: string
        org:
          $ref: '#/components/schemas/Org'
        name:
          type: string
        platform:
          type: string
        instanceUrl:
          type: string
        isSandbox:
          type: boolean
        isMain:
          type: boolean
        isDemo:
          type: boolean
        isConnected:
          type: object
          default: false
        createdById:
          type: string
        createdBy:
          $ref: '#/components/schemas/User'
        fetchStatus:
          enum:
          - fetching
          - initial_fetching
          - error
          - fetched
          - invalid_credentials
          type: string
        lastSuccessfulFetchTs:
          type: number
        disconnectedAt:
          format: date-time
          type:
          - string
          - 'null'
        createdAt:
          format: date-time
          type: string
        updatedAt:
          format: date-time
          type: string
        accountId:
          type: string
        connectedUser:
          type: string
        account:
          $ref: '#/components/schemas/Account'
        deployments:
          type: array
          items:
            $ref: '#/components/schemas/FunnelDeployment'
        optMonitoring:
          type: boolean
        graphVersion:
          type:
          - string
          - 'null'
        graphDbReleaseChannel:
          enum:
          - stable
          - beta
          - shadow
          type:
          - string
          - 'null'
        tier:
          enum:
          - T0
          - T1
          type: string
      required:
      - id
      - org
      - name
      - platform
      - instanceUrl
      - isSandbox
      - isMain
      - isDemo
      - isConnected
      - createdById
      - createdBy
      - fetchStatus
      - lastSuccessfulFetchTs
      - disconnectedAt
      - createdAt
      - updatedAt
      - accountId
      - connectedUser
      - account
      - deployments
      - optMonitoring
      - graphVersion
      - graphDbReleaseChannel
      - tier
    Account:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        authZeroOrgId:
          type: string
        createdAt:
          format: date-time
          type: string
        updatedAt:
          format: date-time
          type: string
        deletedAt:
          format: date-time
          type: string
        onboardingStep:
          type: string
          enum:
          - ConnectOrg
          - Completed
        trialStartDate:
          format: date-time
          type: string
        trialEndDate:
          format: date-time
          type: string
        type:
          type: string
          enum:
          - Customer
          - POC
          - Inactive
          - SI
          - Free
          - Internal
        roleGroups:
          type: array
          items:
            $ref: '#/components/schemas/RoleGroup'
        users:
          type: array
          items:
            $ref: '#/components/schemas/User'
        disableAi:
          type: boolean
        isBuildModeEnabled:
          type: boolean
        lastSeen:
          format: date-time
          type: string
        allowedIpRanges:
          type:
          - array
          - 'null'
          items:
            type: string
      required:
      - id
      - name
      - authZeroOrgId
      - createdAt
      - updatedAt
      - deletedAt
      - onboardingStep
      - trialStartDate
      - trialEndDate
      - type
      - roleGroups
      - users
      - disableAi
      - isBuildModeEnabled
      - lastSeen
      - allowedIpRanges
    Org:
      type: object
      properties:
        id:
          type: string
        accountId:
          type: string
        account:
          $ref: '#/components/schemas/Account'
      required:
      - id
      - accountId
      - account
    SweepStage:
      type: object
      properties:
        stageName:
          type: string
        _stageId:
          type: string
        stageDescription:
          type: string
        _branchIndex:
          type: number
        _stageColumnIndex:
          type: number
        exitCriteria:
          type: array
          items:
            $ref: '#/components/schemas/SweepExitCriteria'
        assignmentRules:
          type: array
          items:
            $ref: '#/components/schemas/SweepAssignmentRule'
        _team:
          type: string
        stageType:
          type: string
          enum:
          - regular
          - lost
          - nurturing
        preventBackwardStages:
          type: boolean
        funnelLinks:
          type: array
          items:
            $ref: '#/components/schemas/FunnelLinkDto'
        additionalFields:
          default: []
          type: array
          items:
            $ref: '#/components/schemas/SweepFieldReference'
      required:
      - stageName
      - _stageId
      - stageDescription
      - exitCriteria
      - assignmentRules
    RoleGroupOrgRole:
      type: object
      properties:
        role:
          type: object
        crmOrgId:
          type: string
        crmOrg:
          $ref: '#/components/schemas/CrmOrg'
        roleGroupId:
          type: string
        roleGroup:
          $ref: '#/components/schemas/RoleGroup'
      required:
      - role
      - crmOrgId
      - crmOrg
      - roleGroupId
      - roleGroup
    UpdateIntegrationSettingsDto:
      type: object
      properties:
        calendarProvider:
          type: string
          enum:
          - google_calendar
        videoConferencingProvider:
          type: string
          enum:
          - zoom
          - google_meet
    FunnelPluginsDto:
      type: object
      properties: {}
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http