List Conference Tokens
GET/conferences/:id/conference_tokens
List conference tokens.
Permissions
The API token must include the following scopes: Video.
Request
Path Parameters
id uuidrequired
Unique id of a video conference
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
links
object
self string
first string
next string
prev string
data
object[]
id uuid
Unique ID of the Conference Token
name string
Name of the Conference Token
token string
Conference Token's randomly generated sequence
scopes string[]
List of permissions
{
"links": {
"self": "string",
"first": "string",
"next": "string",
"prev": "string"
},
"data": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "My First Token",
"token": "vpt_62c65414de4d067d07415a7ced8183be",
"scopes": [
"room.member.audio_mute"
]
}
]
}
Loading...