list_streams
list_streams
List active streams for a conference.
Path parameters
id
Unique id of a video conference
Response
links
Pagination links.
data
List of streams.
Response Example
Response
list_streams
List active streams for a conference.
{"links": {"self": "https://example.signalwire.com/api/video/rooms?page=2","first": "https://example.signalwire.com/api/video/rooms?page=1","next": "https://example.signalwire.com/api/video/rooms?page=3","prev": "https://example.signalwire.com/api/video/rooms?page=1"},"data": [{"id": "c22d24f6-5a47-4597-9a23-c7d01e696b92","url": "rtmp://broadcaster","stream_type": "rtmp","width": 1920,"height": 1080,"fps": 20,"created_at": "2022-01-01T10:00:00Z","updated_at": "2022-01-01T11:00:00Z"}]}
from signalwire.rest import RestClientclient = RestClient(project="your-project-id",token="your-api-token",host="your-space.signalwire.com",)streams = client.video.conferences.list_streams("conference-id")