Chatbot Personas
Fetch Chatbot Persona
API Documentation
Chatbot Appearance
Chatbot Custom Content
Chatbot Follow Up Prompts
Chatbot Icons
Chatbot Links
Chatbot Messages
Chatbot Personas
Chatbot Prompts
Chatbot Quick Prompts
Chatbot Settings
Chatbot Threads
Chatbot Personas
Fetch Chatbot Persona
Fetch a persona of the chatbot
GET
/
v0
/
chatbots
/
{chatbotId}
/
settings
/
personas
/
{personaId}
curl --request GET \
--url https://sitegpt.ai/api/v0/chatbots/{chatbotId}/settings/personas/{personaId} \
--header 'Authorization: Bearer <token>'
{
"success": true,
"message": "Fetched the custom persona of the chatbot successfully",
"data": {
"persona": {
"id": "8224ca11-5ec3-434c-bfcc-880dcf3990c8",
"title": "Custom",
"description": "Custom Persona",
"instructions": "Answer in an engaging and interactive way."
}
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Id of the chatbot
Id of the chatbot persona
Response
200
application/json
OK
Success Response
Was this page helpful?
curl --request GET \
--url https://sitegpt.ai/api/v0/chatbots/{chatbotId}/settings/personas/{personaId} \
--header 'Authorization: Bearer <token>'
{
"success": true,
"message": "Fetched the custom persona of the chatbot successfully",
"data": {
"persona": {
"id": "8224ca11-5ec3-434c-bfcc-880dcf3990c8",
"title": "Custom",
"description": "Custom Persona",
"instructions": "Answer in an engaging and interactive way."
}
}
}