Skip to main content
PATCH
/
v4
/
queue-user-group
/
{groupId}
Update an existing user group
curl --request PATCH \
  --url https://api.example.com/v4/queue-user-group/{groupId} \
  --header 'Content-Type: application/json' \
  --header 'x-meetergo-api-user-id: <api-key>' \
  --data '
{
  "name": "<string>",
  "capacity": 123,
  "userId": "<string>",
  "mainGroupHostId": "<string>"
}
'

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

groupId
string
required

Body

application/json
name
string

Name of the user group

capacity
number

Group capacity (minimum 1)

userId
string

User to assign or deassign from group

mainGroupHostId
string | null

Main host user ID for the group (can be null to remove)

Response

200

User group updated successfully