For performance reasons, I need to get all rooms together with their participants in only one HTTP request. Is that supported by Twilio REST API Client?
For performance reasons, I need to get all rooms together with their participants in only one HTTP request. Is that supported by Twilio REST API Client?
You can use the Twilio Room Resource API to get the list of Rooms based on there status. Below is the Code in C# which returns a list of Room resources created in the given account. The list also includes paging information. Status Can be: in-progress (default) or completed
// Find your Account Sid and Token at twilio.com/console
TwilioClient.Init(accountSid, authToken);
var rooms = RoomResource.Read(
status: RoomResource.RoomStatusEnum.Completed,
limit: 20
);
Let me know if it helps!