PUT /v1/ai-agent/chatbot_ai_settings/{projectid}/{chatbotId}| Parameter | Type | Required | Description |
|---|---|---|---|
projectid | string | Yes | Unique identifier of the project. |
chatbotId | string | Yes | Unique identifier of the chatbot. |
application/json{
"system_prompt_text": "You are a helpful AI assistant."
}| Field | Type | Required | Description |
|---|---|---|---|
system_prompt_text | string | Yes | System prompt used to configure chatbot behavior and instructions. |
200 OK{
"message": "Success",
"data": true
}curl --location --request PUT 'https://agents.robofy.ai/v1/ai-agent/chatbot_ai_settings//' \
--header 'Content-Type: application/json' \
--data '{
"system_prompt_text": "string"
}'{
"message": "Success",
"data": true
}