status
: String indicating the status of the waiting room. The possible status are:event_id
: String of the current event's id
if an event is active, otherwise an empty string.estimated_queued_users
: Integer of the estimated number of users currently waiting in the queue.estimated_total_active_users
: Integer of the estimated number of users currently active on the origin.max_estimated_time_minutes
: Integer of the maximum estimated time currently presented to the users.curl --location --request GET 'https://api.cloudflare.com/client/v4/zones//waiting_rooms//status'
{
"errors": [],
"messages": [],
"result": {
"estimated_queued_users": 0,
"estimated_total_active_users": 0,
"event_id": "25756b2dfe6e378a06b033b670413757",
"max_estimated_time_minutes": 0,
"status": "queueing"
},
"success": true
}