Skip to main content
PATCH
/
v4
/
queue
/
meeting-type
/
{meetingTypeId}
Update queue for a meeting type
curl --request PATCH \
  --url https://api.example.com/v4/queue/meeting-type/{meetingTypeId} \
  --header 'Content-Type: application/json' \
  --header 'x-meetergo-api-user-id: <api-key>' \
  --data '
{
  "userId": "<string>",
  "userCapacities": [
    {
      "userId": "<string>",
      "capacity": 123
    }
  ],
  "userPriorities": [
    {
      "userId": "<string>",
      "priority": 123
    }
  ],
  "userCustomLinks": [
    {
      "userId": "<string>",
      "link": "<string>"
    }
  ],
  "type": "simpleRoundRobin",
  "maxLeadThreshold": 2,
  "distributionPeriod": "day",
  "prioritizeNearTermAvailability": true
}
'

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

meetingTypeId
string
required

ID of the meeting type

Body

application/json
userId
string

Assign or deassign specified user

userCapacities
object[]

User capacities for queue management

userPriorities
object[]

Host priorities for round robin (higher = booked first)

Per-host overrides for the meeting type custom meeting link. Empty link falls back to the meeting type default.

type
enum<string>

Round robin queue type

Available options:
simpleRoundRobin,
advancedRoundRobin,
equalDistribution
maxLeadThreshold
number

Max bookings a host can be ahead before their availability is hidden

Required range: x >= 1
distributionPeriod
enum<string>

Period over which bookings are counted for equal distribution

Available options:
day,
week,
month
prioritizeNearTermAvailability
boolean

If true, when the lead-threshold filter would push the next available slot more than 14 days past the minimum booking notice, temporarily include over-lead hosts. Disable only for strict fairness.

Response

200

Queue updated successfully