Fetch active livestreams for a meeting
GET/accounts/{account_id}/realtime/kit/{app_id}/meetings/{meeting_id}/active-livestream
Returns details of all active livestreams for the given meeting ID.
Security
API Token
The preferred authorization scheme for interacting with the Cloudflare API. Create a token.
Example:
Accepted Permissions (at least one required)
Path Parameters
Fetch active livestreams for a meeting
curl https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/realtime/kit/$APP_ID/meetings/$MEETING_ID/active-livestream \
-H "Authorization: Bearer $CLOUDFLARE_API_TOKEN"{
"data": {
"id": "id",
"created_at": "2019-12-27T18:11:19.117Z",
"disabled": "disabled",
"ingest_server": "ingest_server",
"meeting_id": "meeting_id",
"name": "name",
"playback_url": "playback_url",
"status": "LIVE",
"stream_key": "stream_key",
"updated_at": "2019-12-27T18:11:19.117Z"
},
"success": true
}Returns Examples
{
"data": {
"id": "id",
"created_at": "2019-12-27T18:11:19.117Z",
"disabled": "disabled",
"ingest_server": "ingest_server",
"meeting_id": "meeting_id",
"name": "name",
"playback_url": "playback_url",
"status": "LIVE",
"stream_key": "stream_key",
"updated_at": "2019-12-27T18:11:19.117Z"
},
"success": true
}