curl --request POST \
--url https://api.example.com/rooms \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"waitingRoom": true,
"maxParticipants": 123
}
'{
"400": {},
"401": {},
"500": {},
"id": "<string>",
"code": "<string>",
"name": "<string>",
"hostId": "<string>",
"isActive": true,
"isLocked": true,
"startedAt": "<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 POST \
--url https://api.example.com/rooms \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"waitingRoom": true,
"maxParticipants": 123
}
'{
"400": {},
"401": {},
"500": {},
"id": "<string>",
"code": "<string>",
"name": "<string>",
"hostId": "<string>",
"isActive": true,
"isLocked": true,
"startedAt": "<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 POST https://api.neuronmeet.com/rooms \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "Team Standup",
"waitingRoom": true,
"maxParticipants": 10
}'
{
"id": "clx1a2b3c4d5e6f7g8h9i0j",
"code": "abc-def-ghi",
"name": "Team Standup",
"hostId": "clx0a1b2c3d4e5f6g7h8i9j",
"isActive": true,
"isLocked": false,
"startedAt": "2026-03-03T10:30:00.000Z",
"createdAt": "2026-03-03T10:30:00.000Z",
"updatedAt": "2026-03-03T10:30:00.000Z",
"host": {
"id": "clx0a1b2c3d4e5f6g7h8i9j",
"displayName": "John Doe",
"avatarUrl": "https://example.com/avatar.jpg"
},
"settings": {
"id": "clx2a3b4c5d6e7f8g9h0i1j",
"roomId": "clx1a2b3c4d5e6f7g8h9i0j",
"allowChat": true,
"allowScreenShare": true,
"allowGuestAccess": true,
"waitingRoom": true,
"muteParticipantsOnJoin": false,
"maxParticipants": 10
}
}