description: Success response for retrieving a room content: application/json: schema: $ref: '../schemas/meet-room.yaml' examples: complete_room_details: summary: Full room details response value: roomId: 'room-123' roomName: 'room' creationDate: 1620000000000 autoDeletionDate: 1900000000000 autoDeletionPolicy: withMeeting: when_meeting_ends withRecordings: close preferences: chatPreferences: enabled: true recordingPreferences: enabled: false virtualBackgroundPreferences: enabled: true moderatorUrl: 'http://localhost:6080/room/room-123?secret=123456' speakerUrl: 'http://localhost:6080/room/room-123?secret=654321' status: open meetingEndAction: none fields=roomId: summary: Response with only the roomId value: roomId: 'room-123' fields=roomId,roomName,creationDate,autoDeletionDate,preferences: summary: Room details with roomId, roomName, creationDate, autoDeletionDate, and preferences value: roomId: 'room-123' roomName: 'room' creationDate: 1620000000000 autoDeletionDate: 1900000000000 preferences: chatPreferences: enabled: true recordingPreferences: enabled: false virtualBackgroundPreferences: enabled: true fields=moderatorUrl,speakerUrl: summary: Response containing only moderator and speaker URLs value: moderatorUrl: 'http://localhost:6080/room/room-123?secret=123456' speakerUrl: 'http://localhost:6080/room/room-123?secret=654321'