Get waiting room status
waiting_rooms.statuses.get(strwaiting_room_id, StatusGetParams**kwargs) -> StatusGetResponse
GET/zones/{zone_id}/waiting_rooms/{waiting_room_id}/status
Fetches the status of a configured waiting room. Response fields include:
status: String indicating the status of the waiting room. The possible status are:- not_queueing indicates that the configured thresholds have not been met and all users are going through to the origin.
- queueing indicates that the thresholds have been met and some users are held in the waiting room.
- event_prequeueing indicates that an event is active and is currently prequeueing users before it starts.
- suspended indicates that the room is suspended.
event_id: String of the current event'sidif 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.
Security
API Token
The preferred authorization scheme for interacting with the Cloudflare API. Create a token.
Example:
API Email + API Key
The previous authorization scheme for interacting with the Cloudflare API, used in conjunction with a Global API key.
Example:
The previous authorization scheme for interacting with the Cloudflare API. When possible, use API tokens instead of Global API keys.
Example:
Accepted Permissions (at least one required)
Get waiting room status
import os
from cloudflare import Cloudflare
client = Cloudflare(
api_token=os.environ.get("CLOUDFLARE_API_TOKEN"), # This is the default and can be omitted
)
status = client.waiting_rooms.statuses.get(
waiting_room_id="699d98642c564d2e855e9661899b7252",
zone_id="023e105f4ecef8ad9ca31a8372d0c353",
)
print(status.event_id){
"result": {
"estimated_queued_users": 0,
"estimated_total_active_users": 0,
"event_id": "25756b2dfe6e378a06b033b670413757",
"max_estimated_time_minutes": 0,
"status": "queueing"
}
}Returns Examples
{
"result": {
"estimated_queued_users": 0,
"estimated_total_active_users": 0,
"event_id": "25756b2dfe6e378a06b033b670413757",
"max_estimated_time_minutes": 0,
"status": "queueing"
}
}