curl --request PATCH \
--url https://api.example.com/rooms/:id/settings \
--header 'Content-Type: application/json' \
--data '
{
"allowScreenShare": true,
"allowChat": true,
"allowParticipantVideo": true,
"allowParticipantAudio": true,
"waitingRoom": true,
"isLocked": true
}
'{
"400": {},
"401": {},
"403": {},
"404": {},
"id": "<string>",
"code": "<string>",
"name": "<string>",
"hostId": "<string>",
"isActive": true,
"isLocked": true,
"startedAt": "<string>",
"endedAt": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"host": {
"id": "<string>",
"displayName": "<string>",
"avatarUrl": "<string>"
},
"settings": {
"id": "<string>",
"roomId": "<string>",
"allowChat": true,
"allowScreenShare": true,
"allowGuestAccess": true,
"waitingRoom": true,
"muteParticipantsOnJoin": true,
"maxParticipants": 123
}
}curl --request PATCH \
--url https://api.example.com/rooms/:id/settings \
--header 'Content-Type: application/json' \
--data '
{
"allowScreenShare": true,
"allowChat": true,
"allowParticipantVideo": true,
"allowParticipantAudio": true,
"waitingRoom": true,
"isLocked": true
}
'{
"400": {},
"401": {},
"403": {},
"404": {},
"id": "<string>",
"code": "<string>",
"name": "<string>",
"hostId": "<string>",
"isActive": true,
"isLocked": true,
"startedAt": "<string>",
"endedAt": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"host": {
"id": "<string>",
"displayName": "<string>",
"avatarUrl": "<string>"
},
"settings": {
"id": "<string>",
"roomId": "<string>",
"allowChat": true,
"allowScreenShare": true,
"allowGuestAccess": true,
"waitingRoom": true,
"muteParticipantsOnJoin": true,
"maxParticipants": 123
}
}curl -X PATCH https://api.neuronmeet.com/rooms/clx1a2b3c4d5e6f7g8h9i0j/settings \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"allowChat": false,
"isLocked": true,
"waitingRoom": false
}'
{
"id": "clx1a2b3c4d5e6f7g8h9i0j",
"code": "abc-def-ghi",
"name": "Team Standup",
"hostId": "clx0a1b2c3d4e5f6g7h8i9j",
"isActive": true,
"isLocked": true,
"startedAt": "2026-03-03T10:30:00.000Z",
"endedAt": null,
"createdAt": "2026-03-03T10:30:00.000Z",
"updatedAt": "2026-03-03T10:45:00.000Z",
"host": {
"id": "clx0a1b2c3d4e5f6g7h8i9j",
"displayName": "John Doe",
"avatarUrl": "https://example.com/avatar.jpg"
},
"settings": {
"id": "clx2a3b4c5d6e7f8g9h0i1j",
"roomId": "clx1a2b3c4d5e6f7g8h9i0j",
"allowChat": false,
"allowScreenShare": true,
"allowGuestAccess": true,
"waitingRoom": false,
"muteParticipantsOnJoin": false,
"maxParticipants": 10
}
}
DELETE /rooms/:id
curl -X DELETE https://api.neuronmeet.com/rooms/clx1a2b3c4d5e6f7g8h9i0j \
-H "Authorization: Bearer YOUR_JWT_TOKEN"
{
"id": "clx1a2b3c4d5e6f7g8h9i0j",
"code": "abc-def-ghi",
"name": "Team Standup",
"hostId": "clx0a1b2c3d4e5f6g7h8i9j",
"isActive": false,
"isLocked": false,
"startedAt": "2026-03-03T10:30:00.000Z",
"endedAt": "2026-03-03T11:00:00.000Z",
"createdAt": "2026-03-03T10:30:00.000Z",
"updatedAt": "2026-03-03T11:00:00.000Z"
}
{
"statusCode": 400,
"message": ["allowChat must be a boolean"],
"error": "Bad Request"
}
{
"statusCode": 403,
"message": "Only the host can update room settings"
}
{
"statusCode": 404,
"message": "Room not found"
}