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

Latest commit

 

History

History
54 lines (43 loc) · 744 Bytes

booth.md

File metadata and controls

54 lines (43 loc) · 744 Bytes

booth Endpoint

The booth endpoint enables you to join (POST) or leave (DELETE) the waitlist.

Endpoint

booth

Methods

POST, DELETE

Possible error messages

Insufficient permissions

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

User doesn't have an active/valid playlist

{
    "data": [
        "This request was understood but is forbidden."
    ],
    "status": "noValidPlaylist",
}

Not in a room

{
    "data": [
        "not in a room."
    ],
    "status": "requestError",
}

Data returned for both verbs

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