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