post https://api-v2.pandavideo.com/assist-ai/update_chat_visibility
Updates the visibility of the chat interface for a specific video and assistant
POST /assist-ai/update_chat_visibility
Detailed Description
Updates whether the chat interface is visible for a specific assistant and video.
HTTP Method & Path
POST /assist-ai/update_chat_visibility
Authentication Requirements
- Security Scheme:
PandaAuth
(apiKey) - Header:
Authorization: <your_api_token>
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
Authorization | header | string | Yes | Panda API token |
Request Body
Schema: UpdateChatVisibilityRequest
Name | Type | Required | Description |
---|---|---|---|
assistant_id | string | Yes | Assistant ID. |
video_id | string | Yes | Video ID. |
chat_is_visible | boolean | Yes | Whether the chat should be visible. |
Example Request Body
{
"assistant_id": "123e4567-e89b-12d3-a456-426614174000",
"video_id": "video123",
"chat_is_visible": true
}