Update user assignments or capacities for a queue associated with 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
}
]
}
'User ID to act as when using API Key authentication (required with API Key)
ID of the meeting type
Queue updated successfully
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
}
]
}
'