Skip to main content
PATCH
/
v4
/
meeting-type-template
/
{id}
Update a meeting type template
curl --request PATCH \
  --url https://api.example.com/v4/meeting-type-template/{id} \
  --header 'Content-Type: application/json' \
  --header 'x-meetergo-api-user-id: <api-key>' \
  --data '
{
  "spots": 2,
  "locations": [
    "Office A",
    "Conference Room B",
    "Remote"
  ],
  "templateType": "individual",
  "queueType": "simpleRoundRobin",
  "lockedFields": [
    "<string>"
  ]
}
'

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.

Authorizations

x-meetergo-api-user-id
string
header
required

User ID to act as when using API Key authentication (required with API Key)

Path Parameters

id
string
required

Template ID

Body

application/json
meetingInfo
object

Meeting information

meetingOptions
object

Meeting options

spots
number

Number of available spots

Required range: x >= 1
locations
string[]

Available locations

Example:
["Office A", "Conference Room B", "Remote"]
templateType
enum<string>

Template type: individual (assigned to users) or team (assigned to workspaces)

Available options:
individual,
team
queueType
enum<string>

Queue type for team templates

Available options:
simpleRoundRobin,
advancedRoundRobin,
equalDistribution
lockedFields
string[]

Field keys that assigned users cannot modify on their meeting types.

Response

200 - undefined