put https://api-v2.pandavideo.com/assist-ai/update_assistant_video_bind/
Updates the video bindings for an existing AI assistant
PUT /assist-ai/update_assistant_video_bind/{assistant_id}
Detailed Description
Updates the set of videos bound to an existing AI assistant and optionally its language.
HTTP Method & Path
PUT /assist-ai/update_assistant_video_bind/{assistant_id}
Authentication Requirements
- Security Scheme:
PandaAuth
(apiKey) - Header:
Authorization: <your_api_token>
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
Authorization | header | string | Yes | Panda API token |
assistant_id | path | string (uuid) | Yes | Unique identifier of the assistant. |
Request Body
Schema: UpdateAssistantVideoBindRequest
Name | Type | Required | Description |
---|---|---|---|
video_ids | array of string | No | Array of video IDs to bind. |
lang | string | No | Language code. |
Example Request Body
{
"video_ids": ["video1", "video2", "video3"],
"lang": "en"
}