Skip to content
This repository was archived by the owner on Sep 8, 2024. It is now read-only.

Latest commit

 

History

History
56 lines (42 loc) · 771 Bytes

File metadata and controls

56 lines (42 loc) · 771 Bytes

booth/cycle Endpoint

The booth/cycle endpoint enables you to decide whether the waitlist should cycle or not.

Note: You need to have sufficient permissions in the room to access this resource.

Endpoint

booth/cycle

Method

PUT

Parameters

shouldCycle: Should the booth cycle?

{
    "shouldCycle": false
}

Possible error messages

Insufficient permissions

{
    "data": [
        "You are not authorized to access this resource."
    ],
    "status": "notAuthorized",
}

shouldCycle is missing

{
    "data": [
        "shouldCycle is required"
    ],
    "status": "requestError",
}

Data returned

{
    'data': [],
    'meta': {},
    'status': 'ok',
    'time': 'xx.xxxxxxxxxxx'
}