v1

latestOpenAPI 3.1.02026-07-2416666272.6 KB
Assistants

Update assistant information

Updates the basic information and configuration of an existing AI assistant

put/assist-ai/update_assistant_info/{assistant_id}

Path parameters

assistant_idstring uuid required

Unique identifier of the assistant

Request body

namestring

Updated name for the assistant

open_new_tabboolean

Whether to open chat in a new tab

question_suggestionsboolean

Whether to enable question suggestions

initial_questionstring

Initial question to display

promptstring

Custom prompt for the assistant

status'active' | 'inactive' | 'processing'

Status of the assistant

Example request

{
  "name": "Updated Assistant Name",
  "question_suggestions": true,
  "initial_question": "How can I help you?",
  "prompt": "You are a helpful video assistant",
  "status": "active"
}

Response

Assistant AI updated successfully

messagestring

Example response

{
  "message": "Assistant AI updated successfully"
}