You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
# Call API
Base endpoint is: `/ocs/v2.php/apps/spreed/api/v1`
## Get list of connected participants
* Method: `GET`* Endpoint: `/call/{token}`
* Response: - Header: + `200 OK` + `403 Forbidden` When the conversation is read-only + `404 Not Found` When the conversation could not be found for the participant + `412 Precondition Failed` When the lobby is active and the user is not a moderator
- Data: Array of participants, each participant has at least:
field | type | Description ------|------|------------ `userId` | string | Is empty for guests `lastPing` | int | Timestamp of the last ping of the user (should be used for sorting) `sessionId` | string | 512 character long string
## Join a call
* Method: `POST`* Endpoint: `/call/{token}`* Data:
field | type | Description ------|------|------------ `flags` | int | Flags what streams are provided by the participant (see [Constants - Participant in-call flag](constants.md#participant-in-call-flag))
* Response: - Header: + `200 OK` + `403 Forbidden` When the conversation is read-only + `404 Not Found` When the conversation could not be found for the participant + `404 Not Found` When the user did not join the conversation before + `412 Precondition Failed` When the lobby is active and the user is not a moderator
## Leave a call (but staying in the conversation for future calls and chat)
* Method: `DELETE`* Endpoint: `/call/{token}`
* Response: - Header: + `200 OK` + `403 Forbidden` When the conversation is read-only + `404 Not Found` When the conversation could not be found for the participant + `404 Not Found` When the user did not join the conversation before + `412 Precondition Failed` When the lobby is active and the user is not a moderator
|