Skip to main content

Update viewer info in chatroom

PUT 

https://api.one.blendvision.com/bv/chatroom/v1/chatrooms/viewer-infos

Modifies viewer information within the chatroom. Authorization requires the chatroom token with the admin role.

Request

Header Parameters

    authorization string

    This API should be invoked with the chatroom token.

Body

required
    viewer_info objectrequired

    Required.

    enabled booleanrequired

    Required. Indicates whether the chat will display the viewer info or not.

    action_taker objectrequired

    Required. The user who update the setting.

    custom_name stringrequired

    Required. The custom name of the user.

Responses

A successful response.

Schema

    object

Authorization: authorization

name: authorizationtype: apiKeydescription: Enter the token with Bearer schema prefix, eg. `Bearer <token-string>`in: header
curl -L -X PUT 'https://api.one.blendvision.com/bv/chatroom/v1/chatrooms/viewer-infos' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'authorization: <API_KEY_VALUE>' \
-d '{
"viewer_info": {
"enabled": true
},
"action_taker": {
"custom_name": "string"
}
}'
Request Collapse all
Base URL
https://api.one.blendvision.com
Auth
Parameters
— header
Body required
{
"viewer_info": {
"enabled": true
},
"action_taker": {
"custom_name": "string"
}
}
ResponseClear

Click the Send API Request button above and see the response here!