> ## 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.

# Update a meeting type template



## OpenAPI

````yaml /openapi.json patch /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}:
    patch:
      tags:
        - Meeting Type Template V4
      summary: Update a meeting type template
      operationId: updateMeetingTypeTemplate
      parameters:
        - name: id
          required: true
          in: path
          description: Template ID
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateMeetingTypeTemplateV4Dto'
      responses:
        '200':
          description: ''
      security:
        - ApiUserHeader: []
        - JWT: []
        - ApiKey: []
components:
  schemas:
    UpdateMeetingTypeTemplateV4Dto:
      type: object
      properties:
        meetingInfo:
          description: Meeting information
          allOf:
            - $ref: '#/components/schemas/MeetingInfo'
        meetingOptions:
          description: Meeting options
          allOf:
            - $ref: '#/components/schemas/MeetingOptions'
        spots:
          type: number
          description: Number of available spots
          minimum: 1
        locations:
          description: Available locations
          example:
            - Office A
            - Conference Room B
            - Remote
          type: array
          items:
            type: string
        templateType:
          enum:
            - individual
            - team
          type: string
          description: >-
            Template type: individual (assigned to users) or team (assigned to
            workspaces)
        queueType:
          enum:
            - simpleRoundRobin
            - advancedRoundRobin
            - equalDistribution
          type: string
          description: Queue type for team templates
        lockedFields:
          description: Field keys that assigned users cannot modify on their meeting types.
          type: array
          items:
            type: string
    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
    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
    CssSetting:
      type: object
      properties:
        mode:
          type: number
      required:
        - mode
    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
  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.

````