API Reference

Update Tutor information

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

NameInTypeRequiredDescription
AuthorizationheaderstringYesPanda API token (without Bearer prefix).
assistant_idpathstring (uuid)YesUnique identifier of the assistant.

Request Body

Schema: UpdateAssistantInfoRequest

NameTypeRequiredDescription
namestringNoUpdated assistant name.
open_new_tabbooleanNoWhether chat opens in a new tab.
question_suggestionsbooleanNoEnable question suggestions.
initial_questionstringNoInitial question to display.
promptstringNoCustom prompt for the assistant.
statusstring (enum: active, inactive, processing)NoAssistant 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"
}
Language
Credentials
Header
URL
Click Try It! to start a request and see the response here!