> ## Documentation Index
> Fetch the complete documentation index at: https://developer.meetergo.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get meeting type template by ID



## OpenAPI

````yaml /openapi.json get /v4/meeting-type-template/{id}
openapi: 3.0.0
info:
  title: meetergo Platform API
  description: >-
    Comprehensive scheduling API for creating users, managing availability,
    handling bookings, and connecting calendar providers. Enables seamless
    integration with external platforms and applications.
  version: 0.0.0
  contact: {}
  termsOfService: https://www.meetergo.com/tos/
servers: []
security: []
tags:
  - name: User V4
    description: Create and manage users in your workspace
  - name: Meeting Type V4
    description: Configure meeting templates with durations, buffers, and conferencing
  - name: availability
    description: Manage weekly schedules and availability settings
  - name: Booking V4
    description: Create new bookings
  - name: Booking Availability V4
    description: Query available time slots for booking
  - name: Appointment V4
    description: Manage existing appointments
  - name: Attendee V4
    description: Manage attendee details and notes
  - name: Calendar Connections V4
    description: Connect and sync external calendars
  - name: One Time Booking Link V4
    description: Create single-use booking links
  - name: availability-exception
    description: Override availability for specific dates
  - name: Booking Link V4
    description: Configure various booking page types
  - name: Personal Page V4
    description: Manage user profile pages
  - name: Handoff V4
    description: Reassign meetings to other hosts
  - name: Calendar Auth V4
    description: OAuth callbacks for calendar providers
  - name: Queue V4
    description: Round-robin and queue-based routing (Beta)
  - name: Queue User Group V4
    description: Manage queue user groups (Beta)
  - name: Meeting Type Template V4
    description: Reusable meeting type configurations (Beta)
  - name: Attendee Pending V4
    description: Manage pending attendee approvals (Beta)
  - name: Provisional Booking V4
    description: Manage provisional/unconfirmed bookings (Beta)
paths:
  /v4/meeting-type-template/{id}:
    get:
      tags:
        - Meeting Type Template V4
      summary: Get meeting type template by ID
      operationId: getMeetingTypeTemplate
      parameters:
        - name: id
          required: true
          in: path
          description: Template ID
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MeetingTypeTemplateResponseDto'
        default:
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MeetingTypeTemplateResponseDto'
      security:
        - ApiUserHeader: []
        - JWT: []
        - ApiKey: []
components:
  schemas:
    MeetingTypeTemplateResponseDto:
      type: object
      properties:
        id:
          type: string
        meetingInfo:
          $ref: '#/components/schemas/MeetingInfo'
        meetingOptions:
          $ref: '#/components/schemas/MeetingOptions'
        crmOptions:
          $ref: '#/components/schemas/MeetingCRMOptions'
        ics:
          $ref: '#/components/schemas/IcsInfo'
        timeslotInterval:
          type: number
        spots:
          type: number
        bookingMinimum:
          type: number
        daysIntoFuture:
          $ref: '#/components/schemas/DaysIntoFutureSetting'
        enableCalendarInviteNotification:
          type: boolean
        useSchedule:
          type: boolean
        useCompanyLogo:
          type: boolean
        useCustomInvite:
          type: boolean
        disableActionButtons:
          type: boolean
        useCustomForm:
          type: boolean
        inCompanyPage:
          type: boolean
        formFirst:
          type: boolean
        locations:
          type: array
          items:
            type: string
        compact:
          type: boolean
        disableTeamsEmail:
          type: boolean
        languageSetting:
          $ref: '#/components/schemas/LanguageSetting'
        customTextSelectChannel:
          $ref: '#/components/schemas/CustomTextSelectChannelSetting'
        timezonePreset:
          $ref: '#/components/schemas/TimezonePresetSetting'
        cssSetting:
          $ref: '#/components/schemas/CssSetting'
        meetingPaymentInfo:
          $ref: '#/components/schemas/MeetingPaymentInfo'
        videoSetting:
          $ref: '#/components/schemas/VideoSetting'
        cancellationPolicy:
          $ref: '#/components/schemas/CancellationPolicySetting'
        reschedulingPolicy:
          $ref: '#/components/schemas/ReschedulingPolicySetting'
        recurringSetting:
          $ref: '#/components/schemas/RecurringSetting'
        lockedFields:
          type: array
          items:
            type: string
        templateType:
          enum:
            - individual
            - team
          type: string
        queueType:
          nullable: true
          enum:
            - simpleRoundRobin
            - advancedRoundRobin
            - equalDistribution
          type: string
        useHostAvailability:
          type: boolean
        bookingFrequencies:
          type: array
          items:
            $ref: '#/components/schemas/HostBookingFrequency'
        companyId:
          type: string
        createdById:
          type: string
        createdAt:
          type: string
        updatedAt:
          type: string
        deletedAt:
          type: string
        formId:
          type: string
        availabilityId:
          type: string
        reminderIds:
          type: array
          items:
            type: string
        assignedToCount:
          type: number
        createdBy:
          $ref: '#/components/schemas/UserBasicDto'
        availability:
          $ref: '#/components/schemas/AvailabilityBasicDto'
        form:
          $ref: '#/components/schemas/FormBasicDto'
        reminders:
          type: array
          items:
            $ref: '#/components/schemas/ReminderBasicDto'
      required:
        - id
        - meetingInfo
        - meetingOptions
        - crmOptions
        - ics
        - timeslotInterval
        - spots
        - bookingMinimum
        - daysIntoFuture
        - enableCalendarInviteNotification
        - useSchedule
        - useCompanyLogo
        - useCustomInvite
        - disableActionButtons
        - useCustomForm
        - inCompanyPage
        - formFirst
        - locations
        - compact
        - disableTeamsEmail
        - languageSetting
        - customTextSelectChannel
        - timezonePreset
        - cssSetting
        - meetingPaymentInfo
        - videoSetting
        - cancellationPolicy
        - reschedulingPolicy
        - recurringSetting
        - lockedFields
        - templateType
        - useHostAvailability
        - bookingFrequencies
        - companyId
        - createdById
        - createdAt
        - updatedAt
    MeetingInfo:
      type: object
      properties:
        name:
          type: string
          description: Name of the meeting type
        description:
          type: string
          description: Description of the meeting type
        enableRedirect:
          type: boolean
          description: Enable redirect after booking completion
        redirect:
          type: string
          description: Redirect URL to navigate after booking
        passEventDetailsToRedirect:
          type: boolean
          description: >-
            Pass event details (invitee name, email, form answers) as query
            params to redirect URL
        duration:
          type: number
          description: Primary duration in minutes
        channel:
          description: Meeting channel/location type
          allOf:
            - $ref: '#/components/schemas/MeetingTypeChannel'
        customChannelName:
          type: string
          description: Custom name for the meeting channel
        customChannelLink:
          type: string
          description: Custom link for the meeting channel
        groupBooking:
          type: boolean
          description: Enable group booking (multiple attendees per slot)
        showAvailableSlots:
          type: boolean
          description: Show available spots count on the booking page
        enrichInvitee:
          type: boolean
          description: Enable invitee data enrichment
        confirmationButton:
          description: Confirmation button settings
          allOf:
            - $ref: '#/components/schemas/ConfirmationButton'
        bufferBefore:
          type: number
          description: Buffer time before meeting in minutes
        bufferAfter:
          type: number
          description: Buffer time after meeting in minutes
        color:
          type: object
          description: Color for the meeting type in RGB format, e.g. "rgb(0, 153, 255)"
          nullable: true
      required:
        - name
        - description
        - enableRedirect
        - redirect
        - passEventDetailsToRedirect
        - duration
        - channel
        - customChannelName
        - customChannelLink
        - groupBooking
        - showAvailableSlots
        - enrichInvitee
        - confirmationButton
        - bufferBefore
        - bufferAfter
    MeetingOptions:
      type: object
      properties:
        allowedDurations:
          description: >-
            Additional duration options in minutes (shown alongside primary
            duration)
          example:
            - 15
            - 30
            - 60
          type: array
          items:
            type: number
        allowSelectChannel:
          type: boolean
          description: Allow attendees to select meeting channel/location
        allowHostSelection:
          type: boolean
          description: Allow attendees to select specific host (round-robin only)
        forceHostSelection:
          type: boolean
          description: Force host selection (no "any host" option available)
        allowedChannels:
          type: array
          description: Available channel options when allowSelectChannel is enabled
          items:
            $ref: '#/components/schemas/MeetingTypeChannel'
        channelAvailabilities:
          type: object
          description: >-
            Per-channel availability overrides. Each value can be a UUID string
            (existing availability) or an inline availability object with
            "name", "timezone", and optional "schedule" and "exceptions" for
            creation.
        allowAddingGuests:
          type: boolean
          description: Allow attendees to invite additional guests
        doubleOptIn:
          type: string
          description: Double opt-in confirmation setting
        requireHostConfirmation:
          type: string
          description: Require host confirmation for bookings
        enableClusterMeeting:
          type: boolean
          description: Show only time slots adjacent to existing meetings
        enableBufferCarryOver:
          type: boolean
          description: Carry over buffer time to next available slot if needed
        maxBufferCarryOverDelay:
          type: number
          description: Maximum hours for buffer carry-over delay (0-168)
        allowPhoneOnlyBooking:
          type: boolean
          description: >-
            Allow phone-only bookings without email (API use case, requires
            phoneOnlyBooking in request)
        confirmationPageCssSetting:
          description: Custom CSS settings for confirmation pages
          allOf:
            - $ref: '#/components/schemas/CssSetting'
        bookingPagePassword:
          description: Password protection settings for booking page
          allOf:
            - $ref: '#/components/schemas/BookingPagePasswordSetting'
      required:
        - allowedDurations
        - allowSelectChannel
        - allowHostSelection
        - forceHostSelection
        - allowedChannels
        - allowAddingGuests
        - doubleOptIn
        - requireHostConfirmation
        - enableClusterMeeting
        - enableBufferCarryOver
        - maxBufferCarryOverDelay
        - allowPhoneOnlyBooking
        - confirmationPageCssSetting
        - bookingPagePassword
    MeetingCRMOptions:
      type: object
      properties:
        hubspotContactSync:
          type: boolean
        hubspotContactStage:
          type: string
        hubspotCompanySync:
          type: boolean
        hubspotCompanyStage:
          type: string
        hubspotCompanyMatchingField:
          type: string
        hubspotDealSync:
          type: boolean
        hubspotDealStage:
          type: string
        hubspotPipelineId:
          type: string
        pipedriveDealSync:
          type: boolean
        pipedriveContactSync:
          type: boolean
        pipedrivePipelineId:
          type: number
          nullable: true
        pipedriveStageId:
          type: number
          nullable: true
        pipedriveUseExistingDeal:
          type: boolean
        centralStationContactSync:
          type: boolean
        centralStationDealSync:
          type: boolean
        centralStationPipelineId:
          type: number
          nullable: true
        centralStationStageId:
          type: number
          nullable: true
        linkandoSyncEnabled:
          type: boolean
        linkandoPlaybookId:
          type: number
          nullable: true
        linkandoTemplateId:
          type: number
          nullable: true
        evalancheEnabled:
          type: boolean
        klicktippEnabled:
          type: boolean
        getResponseEnabled:
          type: boolean
        getResponseCampaignId:
          type: string
          nullable: true
        brevoEnabled:
          type: boolean
        sevdeskEnabled:
          type: boolean
        sevdeskCategoryId:
          type: number
          nullable: true
        smartWeContactSync:
          type: boolean
        smartWeCompanySync:
          type: boolean
        smartWeDealSync:
          type: boolean
        smartWeDealStage:
          type: string
        salesforceSyncEnabled:
          type: boolean
        salesforceCaseSync:
          type: boolean
        salesforceLeadSync:
          type: boolean
        salesforceOpportunitySync:
          type: boolean
        salesforceLeadStatus:
          type: string
        salesforceCaseStatus:
          type: string
        salesforceOpportunityStage:
          type: string
        salesforceDefaultObjectType:
          type: string
        internalCrmPipelineId:
          type: object
          nullable: true
        internalCrmStageId:
          type: object
          nullable: true
        crmOptInFieldName:
          type: object
          nullable: true
      required:
        - hubspotContactSync
        - hubspotContactStage
        - hubspotCompanySync
        - hubspotCompanyStage
        - hubspotCompanyMatchingField
        - hubspotDealSync
        - hubspotDealStage
        - hubspotPipelineId
        - pipedriveDealSync
        - pipedriveContactSync
        - pipedrivePipelineId
        - pipedriveStageId
        - pipedriveUseExistingDeal
        - centralStationContactSync
        - centralStationDealSync
        - centralStationPipelineId
        - centralStationStageId
        - linkandoSyncEnabled
        - linkandoPlaybookId
        - linkandoTemplateId
        - evalancheEnabled
        - klicktippEnabled
        - getResponseEnabled
        - getResponseCampaignId
        - brevoEnabled
        - sevdeskEnabled
        - sevdeskCategoryId
        - smartWeContactSync
        - smartWeCompanySync
        - smartWeDealSync
        - smartWeDealStage
        - salesforceSyncEnabled
        - salesforceCaseSync
        - salesforceLeadSync
        - salesforceOpportunitySync
        - salesforceLeadStatus
        - salesforceCaseStatus
        - salesforceOpportunityStage
        - salesforceDefaultObjectType
        - internalCrmPipelineId
        - internalCrmStageId
        - crmOptInFieldName
    IcsInfo:
      type: object
      properties:
        title:
          $ref: '#/components/schemas/LocalisedContent'
        description:
          $ref: '#/components/schemas/LocalisedContent'
        location:
          $ref: '#/components/schemas/LocalisedContent'
      required:
        - title
        - description
        - location
    DaysIntoFutureSetting:
      type: object
      properties:
        mode:
          type: string
        bookingLimit:
          type: number
        countMode:
          type: string
        rangeMin:
          format: date-time
          type: string
        rangeMax:
          format: date-time
          type: string
      required:
        - mode
    LanguageSetting:
      type: object
      properties:
        enable:
          type: boolean
        default:
          type: string
        allowed:
          type: array
          items:
            type: string
      required:
        - enable
        - default
        - allowed
    CustomTextSelectChannelSetting:
      type: object
      properties:
        enable:
          type: boolean
        body:
          type: string
      required:
        - enable
        - body
    TimezonePresetSetting:
      type: object
      properties:
        enable:
          type: boolean
        timezonePreset:
          type: string
      required:
        - enable
    CssSetting:
      type: object
      properties:
        mode:
          type: number
      required:
        - mode
    MeetingPaymentInfo:
      type: object
      properties:
        enable:
          type: boolean
        price:
          type: number
        currency:
          type: string
        paymentTerms:
          type: string
        suffix:
          type: string
        provider:
          allOf:
            - $ref: '#/components/schemas/PaymentProvider'
        providers:
          type: array
          description: Enabled payment providers. When set, takes precedence over provider.
          items:
            type: string
            enum:
              - paypal
              - stripe
              - none
        durationPrices:
          type: object
          description: Price per duration in minutes
          example:
            '30': 50
            '60': 90
            '90': 120
      required:
        - enable
    VideoSetting:
      type: object
      properties:
        enable:
          type: boolean
        immersive:
          type: boolean
        src:
          type: string
        thumbnailUrl:
          type: string
      required:
        - enable
        - immersive
    CancellationPolicySetting:
      type: object
      properties:
        enable:
          type: boolean
        mode:
          type: string
          enum:
            - disabled
            - hours
            - days
        duration:
          type: number
      required:
        - enable
    ReschedulingPolicySetting:
      type: object
      properties:
        enable:
          type: boolean
        mode:
          type: string
          enum:
            - disabled
            - hours
            - days
        duration:
          type: number
      required:
        - enable
    RecurringSetting:
      type: object
      properties:
        enable:
          type: boolean
        mode:
          type: string
          enum:
            - recurring
            - multi_slot
        frequency:
          type: string
          enum:
            - weekly
            - biweekly
            - monthly
        maxOccurrences:
          type: number
        minOccurrences:
          type: number
        maxSlots:
          type: number
        minSlots:
          type: number
      required:
        - enable
    HostBookingFrequency:
      type: object
      properties:
        perDay:
          type: number
          description: Maximum bookings allowed per day
        perWeek:
          type: number
          description: Maximum bookings allowed per week
        perMonth:
          type: number
          description: Maximum bookings allowed per month
        perYear:
          type: number
          description: Maximum bookings allowed per year
    UserBasicDto:
      type: object
      properties:
        id:
          type: string
        givenName:
          type: string
        familyName:
          type: string
        picture:
          type: string
        slug:
          type: string
        userType:
          type: string
      required:
        - id
        - givenName
        - familyName
        - slug
        - userType
    AvailabilityBasicDto:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
      required:
        - id
        - name
    FormBasicDto:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
      required:
        - id
        - name
    ReminderBasicDto:
      type: object
      properties:
        id:
          type: number
        name:
          type: string
      required:
        - id
        - name
    MeetingTypeChannel:
      type: string
      enum:
        - local
        - local-attendee
        - google
        - zoom
        - phone
        - phone-incoming
        - whatsapp
        - connect
        - webex
        - skypeForConsumer
        - skypeForBusiness
        - teamsForBusiness
        - teamsForBusiness2
        - teamsForExchange
        - teams2ForExchange
        - custom
        - resource
        - whereby
        - kmeet
        - zava
        - jitsi
      description: Meeting channel/location type
    ConfirmationButton:
      type: object
      properties:
        useConfirmationButton:
          type: boolean
        text:
          type: string
        color:
          type: string
        link:
          type: string
      required:
        - useConfirmationButton
        - text
        - color
        - link
    BookingPagePasswordSetting:
      type: object
      properties:
        enable:
          type: boolean
          description: Enable password protection for booking page
        password:
          type: object
          description: Password for booking page access
      required:
        - enable
        - password
    LocalisedContent:
      type: object
      properties:
        en:
          type: string
        de:
          type: string
        fr:
          type: string
        es:
          type: string
        'no':
          type: string
        it:
          type: string
        nl:
          type: string
        da:
          type: string
        pl:
          type: string
        se:
          type: string
        tr:
          type: string
      required:
        - en
    PaymentProvider:
      type: string
      enum:
        - paypal
        - stripe
        - none
  securitySchemes:
    ApiUserHeader:
      type: apiKey
      in: header
      name: x-meetergo-api-user-id
      description: >-
        User ID to act on behalf of. Platform API Keys only (required with an
        API Key unless the endpoint states otherwise). Requests authenticated
        with a Personal Access Token are rejected if this header names another
        user.
    JWT:
      scheme: bearer
      bearerFormat: JWT
      type: http
      description: JWT Bearer token for standard user authentication
    ApiKey:
      scheme: bearer
      bearerFormat: API Key
      type: http
      description: >-
        Bearer token: a Platform API Key (format: ak_live:<uuid>:<secret>) or a
        Personal Access Token (format: rgo-...). PATs always act as the token
        owner.

````