put https://api-v2.pandavideo.com/assist-ai/update_assistant_info/
Updates the basic information and configuration of an existing AI assistant
PUT /assist-ai/update_assistant_info/{assistant_id}
Detailed Description
Updates the basic information and configuration of an existing AI assistant.
HTTP Method & Path
PUT /assist-ai/update_assistant_info/{assistant_id}
Authentication Requirements
- Security Scheme:
PandaAuth
(apiKey) - Header:
Authorization: <your_api_token>
(no Bearer prefix)
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
Authorization | header | string | Yes | Panda API token (without Bearer prefix). |
assistant_id | path | string (uuid) | Yes | Unique identifier of the assistant. |
Request Body
Schema: UpdateAssistantInfoRequest
Name | Type | Required | Description |
---|---|---|---|
name | string | No | Updated assistant name. |
open_new_tab | boolean | No | Whether chat opens in a new tab. |
question_suggestions | boolean | No | Enable question suggestions. |
initial_question | string | No | Initial question to display. |
prompt | string | No | Custom prompt for the assistant. |
status | string (enum: active , inactive , processing ) | No | Assistant status. |
Example Request Body
{
"name": "Updated Assistant Name",
"open_new_tab": false,
"question_suggestions": true,
"initial_question": "How can I help you?",
"prompt": "You are a helpful video assistant",
"status": "active"
}