summaryrefslogtreecommitdiffstats
path: root/docs/webinar.md
blob: 638f95272cd9a35bea20d06feb2a58858572218b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Webinar management

Group and public conversations can be used to host webinars. Those online meetings can have a lobby, which come with the following restrictions:

* Only moderators can start/join a call
* Only moderators can read and write chat messages
* Normal users can only join the room. They then pull the room endpoint regularly for an update and should start the chat and signaling as well as allowing to join the call, once the lobby got disabled.

## Base endpoint

* API v1: 🏁 Removed with API v4: Nextcloud 17 - 21
* API v2: 🏁 Removed with API v4: Nextcloud 19 - 21
* API v3: 🏁 Removed with API v4: Nextcloud 21 only
* API v4: Base endpoint `/ocs/v2.php/apps/spreed/api/v4`: since Nextcloud 22

## Set lobby for a conversation

* Required capability: `webinary-lobby`
* Method: `PUT`
* Endpoint: `/room/{token}/webinar/lobby`
* Data:

| field   | type     | Description                                         |
|---------|----------|-----------------------------------------------------|
| `state` | int      | New state for the conversation                      |
| `timer` | int/null | Timestamp when the lobby state is reset to no lobby |

* Response:
    - Status code:
        + `200 OK`
        + `400 Bad Request` When the conversation type does not support lobby (only group and public conversation atm)
        + `400 Bad Request` When the given timestamp is invalid
        + `403 Forbidden` When the current user is not a moderator/owner
        + `404 Not Found` When the conversation could not be found for the participant

    - Data: See array definition in [Get user´s conversations](conversation.md#get-user-s-conversations)

## Enabled or disable SIP dial-in

* Required capability: `sip-support`
* Method: `PUT`
* Endpoint: `/room/{token}/webinar/sip`
* Data:

| field   | type | Description                                                    |
|---------|------|----------------------------------------------------------------|
| `state` | int  | New SIP state for the conversation (0 = disabled, 1 = enabled) |

* Response:
    - Status code:
        + `200 OK`
        + `400 Bad Request` When the state was invalid or the same
        + `401 Unauthorized` When the user can not enabled SIP
        + `403 Forbidden` When the current user is not a moderator/owner
        + `404 Not Found` When the conversation could not be found for the participant
        + `412 Precondition Failed` When SIP is not configured on the server

    - Data: See array definition in [Get user´s conversations](conversation.md#get-user-s-conversations)