room
Create a room user
Call this endpoint to add a user to a room, specifying a display name at a minimum. The response will contain a joining URL for Livepeer's default meeting app. Alternatively the joining token can be used with a custom app.
post/room/{id}/user
Path parameters
idstring required
Request body
Example request
{
"name": "name",
"canPublish": true,
"canPublishData": true
}Response
Success
Example response
{
"id": "d32ae9e6-c459-4931-9898-e86e2f5e7e16",
"joinUrl": "https://meet.livepeer.chat",
"token": "token"
}