How to get a correct video room record from Twilio. I'm using C# SDK
Creating room:
var room = await RoomResource.CreateAsync(null, RoomResource.RoomTypeEnum.GroupSmall, name, recordParticipantsOnConnect: true);
Then I have room sid in database. And I want to get record of meeting. I found in documentation link for recordings https://video.twilio.com/v1/Rooms/{RoomSId}/Recordings
. But how to get that from C# SDK I don't want to parse it manually.
And second. I need to allow user to watch meeting record. I don't need to separate record for each parcipiants and tracks. Is there a simple way how to get one video for meeting?