Skip to main content
POST
/
v1
/
channels
/
{channelId}
/
voice
/
media
Update media state
curl --request POST \
  --url https://api.magne.app/v1/channels/{channelId}/voice/media \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "muted": true,
  "deafened": true,
  "streaming": true,
  "video": 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
muted
boolean
deafened
boolean
streaming
boolean
video
boolean

Response

Success