Waiting Rooms

waiting_rooms

Methods

Create Waiting Room -> Envelope<>
post/zones/{zone_id}/waiting_rooms

Creates a new waiting room.

Delete Waiting Room -> Envelope<{ id }>
delete/zones/{zone_id}/waiting_rooms/{waiting_room_id}

Deletes a waiting room.

Patch Waiting Room -> Envelope<>
patch/zones/{zone_id}/waiting_rooms/{waiting_room_id}

Patches a configured waiting room.

Waiting Room Details -> Envelope<>
get/zones/{zone_id}/waiting_rooms/{waiting_room_id}

Fetches a single configured waiting room.

List Waiting Rooms -> V4PagePaginationArray<>
get/zones/{zone_id}/waiting_rooms

Lists waiting rooms.

Update Waiting Room -> Envelope<>
put/zones/{zone_id}/waiting_rooms/{waiting_room_id}

Updates a configured waiting room.

Security

The preferred authorization scheme for interacting with the Cloudflare API. Create a token.

Example: Authorization: Bearer Sn3lZJTBX6kkg7OdcBUAxOO963GEIyGQqnFTOFYY

Accepted Permissions (at least one required)

Waiting Rooms Write

Parameters
zone_id: string

Identifier

waiting_room_id: string
Response fields
result:
Request example
200Example

Domain types

AdditionalRoutes = { host, path }
CookieAttributes = { samesite, secure }
Query = { host, name, new_users_per_minute, 16 more... }
WaitingRoom = { id, additional_routes, cookie_attributes, 21 more... }

waiting_rooms.events

Methods

Create Event -> Envelope<>
post/zones/{zone_id}/waiting_rooms/{waiting_room_id}/events

Only available for the Waiting Room Advanced subscription. Creates an event for a waiting room. An event takes place during a specified period of time, temporarily changing the behavior of a waiting room. While the event is active, some of the properties in the event's configuration may either override or inherit from the waiting room's configuration. Note that events cannot overlap with each other, so only one event can be active at a time.

Delete Event -> Envelope<{ id }>
delete/zones/{zone_id}/waiting_rooms/{waiting_room_id}/events/{event_id}

Deletes an event for a waiting room.

Patch Event -> Envelope<>
patch/zones/{zone_id}/waiting_rooms/{waiting_room_id}/events/{event_id}

Patches a configured event for a waiting room.

Event Details -> Envelope<>
get/zones/{zone_id}/waiting_rooms/{waiting_room_id}/events/{event_id}

Fetches a single configured event for a waiting room.

List Events -> V4PagePaginationArray<>
get/zones/{zone_id}/waiting_rooms/{waiting_room_id}/events

Lists events for a waiting room.

Update Event -> Envelope<>
put/zones/{zone_id}/waiting_rooms/{waiting_room_id}/events/{event_id}

Updates a configured event for a waiting room.

Domain types

Event = { id, created_on, custom_page_html, 13 more... }

waiting_rooms.events.details

Methods

Preview Active Event Details -> Envelope<{ id, created_on, custom_page_html, 13 more... }>
get/zones/{zone_id}/waiting_rooms/{waiting_room_id}/events/{event_id}/details

Previews an event's configuration as if it was active. Inherited fields from the waiting room will be displayed with their current values.

Domain types

EventQuery = { event_end_time, event_start_time, name, 10 more... }

waiting_rooms.page

Methods

Create A Custom Waiting Room Page Preview -> Envelope<{ preview_url }>
post/zones/{zone_id}/waiting_rooms/preview

Creates a waiting room page preview. Upload a custom waiting room page for preview. You will receive a preview URL in the form http://waitingrooms.dev/preview/<uuid>. You can use the following query parameters to change the state of the preview:

  1. force_queue: Boolean indicating if all users will be queued in the waiting room and no one will be let into the origin website (also known as queueAll).
  2. queue_is_full: Boolean indicating if the waiting room's queue is currently full and not accepting new users at the moment.
  3. queueing_method: The queueing method currently used by the waiting room.
    • fifo indicates a FIFO queue.
    • random indicates a Random queue.
    • passthrough indicates a Passthrough queue. Keep in mind that the waiting room page will only be displayed if force_queue=true or event=prequeueing — for other cases the request will pass through to the origin. For our preview, this will be a fake origin website returning "Welcome".
    • reject indicates a Reject queue.
  4. event: Used to preview a waiting room event.
    • none indicates no event is occurring.
    • prequeueing indicates that an event is prequeueing (between prequeue_start_time and event_start_time).
    • started indicates that an event has started (between event_start_time and event_end_time).
  5. shuffle_at_event_start: Boolean indicating if the event will shuffle users in the prequeue when it starts. This can only be set to true if an event is active (event is not none).

For example, you can make a request to http://waitingrooms.dev/preview/<uuid>?force_queue=false&queue_is_full=false&queueing_method=random&event=started&shuffle_at_event_start=true 6. waitTime: Non-zero, positive integer indicating the estimated wait time in minutes. The default value is 10 minutes.

For example, you can make a request to http://waitingrooms.dev/preview/<uuid>?waitTime=50 to configure the estimated wait time as 50 minutes.

waiting_rooms.rules

Methods

Create Waiting Room Rule -> Envelope<Array<>>
post/zones/{zone_id}/waiting_rooms/{waiting_room_id}/rules

Only available for the Waiting Room Advanced subscription. Creates a rule for a waiting room.

Delete Waiting Room Rule -> Envelope<Array<>>
delete/zones/{zone_id}/waiting_rooms/{waiting_room_id}/rules/{rule_id}

Deletes a rule for a waiting room.

Patch Waiting Room Rule -> Envelope<Array<>>
patch/zones/{zone_id}/waiting_rooms/{waiting_room_id}/rules/{rule_id}

Patches a rule for a waiting room.

List Waiting Room Rules -> Envelope<Array<>>
get/zones/{zone_id}/waiting_rooms/{waiting_room_id}/rules

Lists rules for a waiting room.

Replace Waiting Room Rules -> Envelope<Array<>>
put/zones/{zone_id}/waiting_rooms/{waiting_room_id}/rules

Only available for the Waiting Room Advanced subscription. Replaces all rules for a waiting room.

Domain types

WaitingRoomRule = { id, action, description, 4 more... }

waiting_rooms.settings

Methods

Patch Zone Level Waiting Room Settings -> Envelope<{ search_engine_crawler_bypass }>
patch/zones/{zone_id}/waiting_rooms/settings

Patch zone-level Waiting Room settings

Get Zone Level Waiting Room Settings -> Envelope<{ search_engine_crawler_bypass }>
get/zones/{zone_id}/waiting_rooms/settings

Get zone-level Waiting Room settings

Update Zone Level Waiting Room Settings -> Envelope<{ search_engine_crawler_bypass }>
put/zones/{zone_id}/waiting_rooms/settings

Update zone-level Waiting Room settings

Domain types

Setting = { search_engine_crawler_bypass }

waiting_rooms.statuses

Methods

Get Waiting Room Status -> Envelope<{ estimated_queued_users, estimated_total_active_users, event_id, 2 more... }>
get/zones/{zone_id}/waiting_rooms/{waiting_room_id}/status

Fetches the status of a configured waiting room. Response fields include:

  1. 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.
  2. event_id: String of the current event's id if an event is active, otherwise an empty string.
  3. estimated_queued_users: Integer of the estimated number of users currently waiting in the queue.
  4. estimated_total_active_users: Integer of the estimated number of users currently active on the origin.
  5. max_estimated_time_minutes: Integer of the maximum estimated time currently presented to the users.