Skip to main content
POST
/
v1
/
channels
/
{channelId}
/
voice
/
jtc
/
controls
Update JTC controls
curl --request POST \
  --url https://api.magne.app/v1/channels/{channelId}/voice/jtc/controls \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "isLocked": true,
  "isHidden": true,
  "userLimit": 123,
  "name": "<string>",
  "musicLocked": true
}
'
{
  "error": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

channelId
string<uuid>
required

Body

application/json
isLocked
boolean
isHidden
boolean
userLimit
integer
name
string
musicLocked
boolean

Response

Success