Skip to content

Latest commit

 

History

History
54 lines (41 loc) · 655 Bytes

rooms_join.md

File metadata and controls

54 lines (41 loc) · 655 Bytes

rooms/join Endpoint

The rooms/join endpoint enables you to join a room.

Endpoint

rooms/join

Method

POST

Parameters

slug: The URL of the room you want to join

{
    "slug": "xxxxx"
}

Possible error messages

Insufficient permissions (not being logged in)

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

slug is missing

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

Data returned

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