Fetch details of a session
GET/accounts/{account_id}/realtime/kit/{app_id}/sessions/{session_id}
Returns data of the given session ID including recording details.
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 details of a session
curl https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/realtime/kit/$APP_ID/sessions/$SESSION_ID \
-H "Authorization: Bearer $CLOUDFLARE_API_TOKEN"{
"data": {
"session": {
"id": "id",
"associated_id": "associated_id",
"created_at": "created_at",
"live_participants": 0,
"max_concurrent_participants": 0,
"meeting_display_name": "meeting_display_name",
"minutes_consumed": 0,
"organization_id": "organization_id",
"started_at": "started_at",
"status": "LIVE",
"type": "meeting",
"updated_at": "updated_at",
"breakout_rooms": [
{}
],
"ended_at": "ended_at",
"meta": {}
}
},
"success": true
}Returns Examples
{
"data": {
"session": {
"id": "id",
"associated_id": "associated_id",
"created_at": "created_at",
"live_participants": 0,
"max_concurrent_participants": 0,
"meeting_display_name": "meeting_display_name",
"minutes_consumed": 0,
"organization_id": "organization_id",
"started_at": "started_at",
"status": "LIVE",
"type": "meeting",
"updated_at": "updated_at",
"breakout_rooms": [
{}
],
"ended_at": "ended_at",
"meta": {}
}
},
"success": true
}