Stop external stream for room

Use this to stop all external streams running in the room. This returns a paginated response for all external streams that were stopped in the room.

POSThttps://api.100ms.live/v2/external-streams/room/<room_id>/stop
curl --location --request POST 'https://api.100ms.live/v2/external-streams/room/<room_id>/stop' \ --header 'Authorization: Bearer <management_token>' \
RESPONSE
Status: 200 OK
{ "error": "<error>", "data": [{ "id": "<job_id>", "room_id": "<room_id>>", "session_id": "<session_id>", "status": "<status>", "destination": "<destination_name>", "rtmp_urls": ["<rtmp_url_1>", "<rtmp_url_2>"], "meeting_url": "<meeting_url>", "recording": false, "resolution": { "width": 1280, "height": 720 }, "created_at": "2023-03-02T07:44:27.010516042Z", "started_at": "2023-03-02T07:44:27.010516042Z", "stopped_at": "2023-03-02T07:44:27.010516042Z", "updated_at": "2023-03-02T07:44:27.010516042Z", "started_by": "<peer_id>", "stopped_by": "<peer_id>", "recording_assets": [] }], "limit": 10, "last": "<last_job_id>" }

Have a suggestion? Recommend changes ->

Run in postman

Was this helpful?

1234