Robofy API
HomeChangelog
HomeChangelog
Visit Website
Sign In
Create an account
  1. Prompt & Persona
  • Start Guide
    • Overview
    • Architecture
    • Authentication
    • Changelog
  • Robofy API
    • Chat
      • Generate Client Token (Handshake)
      • Send Message (Streaming)
      • Send Message (Non Streaming)
      • Send WhatsApp Message
    • Chatbot / Agent
      • List Agents
      • Create Agent
      • Retrieve Agent
      • Update Agent
      • Delete Agent
      • Delink Asset
      • List Linked Assets
      • Delete Widget Tab
    • Account
      • Retrieve Account Details
      • Update Account Details
      • Retrieve Account Limit
    • Prompt & Persona
      • Update System Prompt
        PUT
      • Retrieve Agent Settings
        GET
      • Update Persona
        PUT
      • Retrieve Persona
        GET
    • Inbox
      • List Sessions
      • List Session Messages
    • Project
      • Create Project
      • List Projects
      • Update Project
      • Retreive Project
    • Leads
      • List Leads
    • Content
      • Add Website
      • Get Crawl Status
      • Add Text Content
      • Add File
    • Stats
      • Stats
    • License
      • Create License
      • List License
      • Update License
      • Retrieve License
      • Delete License
      • Update License Limit
    • Partner
      • Onboard
    • Schemas
      • Account
      • AccountDetailDto
      • Address
      • AgentCredentialInsertResponseDto
      • AgentCredentialRequestDto
      • AgentCredentialResponseDto
      • AgentDataPoint
      • AgentLeadCapture
      • AgentLeadReportDto
      • AgentLinkageDto
      • AgentMcpServerDto
      • AgentMcpServerInsertResponseDto
      • AgentMcpServerRequestDto
      • AgentMcpServerUpdateRequestDto
      • AgentPromptVersionDto
      • AgentSessionListDto
      • AgentSessionListItemDto
      • AgentStatsDto
      • AgentThemeDto
      • AgentThemeListDto
      • AgentToolLinkageInsertResponseDto
      • AgentToolLinkageRequestDto
      • AgentWhatappIntrgrationResponse
      • AgentWhatsAppLinkageDto
      • Button
      • CarouselCard
      • CategoryStats
      • ChatBotDetailsDto
      • ChatBotDetailsRequest
      • ChatBotDetailsUpdateRequest
      • ChatbotAISettingsDto
      • ChatbotAISettingsRequest
      • ChatbotAdvanceSettingsDto
      • ChatbotAdvanceSettingsRequest
      • ChatbotAppearanceSettingsDto
      • ChatbotAppearanceSettingsRequest
      • ChatbotAssetDelinkDto
      • ChatbotAssetLinkageDataDto
      • ChatbotAssetLinkageDelinkRequest
      • ChatbotAssetLinkageDetailsDto
      • ChatbotAssetLinkageDto
      • ChatbotAssetLinkageRequest
      • ChatbotTextLinkageRequest
      • ClientData
      • CommonResponse
      • Component
      • Contact
      • ContactName
      • CrawlStatusDto
      • CrawlWebsiteRequest
      • CreateOrUpdateProjectRequest
      • CreatePhoneNumberRequest
      • CreateTemplateRequest
      • CreateWebhookConfigRequest
      • DeLinkWhatsAppRequest
      • Email
      • Error
      • ErrorResponse
      • Example
      • FailureStats
      • FailureStatsDataPoint
      • FormField
      • GoogleSheetDto
      • GoogleSheetIntegrationRequest
      • InboxChatDto
      • InboxDto
      • InboxMessage
      • InboxSession
      • IntelligentMetricsDto
      • Interactive
      • InteractiveAction
      • InteractiveBody
      • InteractiveButton
      • InteractiveFooter
      • InteractiveHeader
      • InteractiveMedia
      • InteractiveProductItem
      • InteractiveProductSection
      • InteractiveReply
      • InteractiveRow
      • InteractiveSection
      • LeadCaptureForm
      • LeadData
      • LeadDataField
      • LeadFormData
      • LeadReport
      • LicenseCreateRequest
      • LicenseDto
      • LicenseLimitRequest
      • LicenseUpdateRequest
      • LimitedTimeOffer
      • LinkWhatsAppRequest
      • LinkedCredentialDto
      • LinkedMcpServerDto
      • Location
      • Media
      • MessageMetaData
      • MessageRequest
      • MessageResponse
      • MessageStats
      • MessageStatsDataPoint
      • MessageTemplate
      • NamedParameter
      • OrgLimitDto
      • Organization
      • PaginatedWebhookLogsResponse
      • Part
      • PartnerClientSession
      • PartnerClientSessionDto
      • Phone
      • PhoneNumberRequest
      • PhoneVerifyCodeRequest
      • PhoneVerifyRequest
      • PlatformStats
      • ProjectDetailDto
      • ProjectWABADetail
      • Reaction
      • ReadTypingIndicatorRequest
      • RecentInsightDto
      • Response
      • SessionInsightItemDto
      • SessionInsightsDto
      • SessionMetaDto
      • SessionMetricsDto
      • SessionSummaryDetailDto
      • StartUrl
      • SubcribedAppsRequest
      • SupportedApp
      • TemplateAction
      • TemplateButtons
      • TemplateCarousel
      • TemplateComponent
      • TemplateCurrency
      • TemplateDateTime
      • TemplateLimitedTimeOffer
      • TemplateMedia
      • TemplateParameter
      • TemplateProductItem
      • TemplateSection
      • TemplateTapTargetConfiguration
      • Text
      • ThemeMetaDto
      • TypingIndicator
      • UpdateOnboardStatusRequest
      • UpdateOnboardStatusResponseDto
      • UploadMedia
      • Url
      • WABADetail
      • WABADto
      • Webhook
      • WebhookConfigDto
      • WebhookConfiguration
      • WebhookLogDto
      • WebsiteDto
      • WhatsAppBusinessApiData
      • WhatsAppBusinessProfile
      • WidgetIntegration
  1. Prompt & Persona

Retrieve Agent Settings

GET
/ai-agent/chatbot_ai_settings/{projectid}/{chatbotId}
Retrieves the AI configuration settings for a specific chatbot.

Endpoint#

GET /v1/ai-agent/chatbot_ai_settings/{projectid}/{chatbotId}

Path Parameters#

ParameterTypeRequiredDescription
projectidstringYesUnique identifier of the project.
chatbotIdstringYesUnique identifier of the chatbot.

Request Body#

No request body is required.

Success Response#

Status Code#

200 OK

Response Body#

{
    "message": "Success",
    "data": {
        "system_prompt_text": "You are a friendly AI assistant.",
        "llm_api_key": "-",
        "not_found_answer": "I'm sorry, but I don't have that information.",
        "tone": "Professional And Friendly",
        "chunk_overlap": null,
        "enable_chatbot_memory": true,
        "question_pre_processing": false,
        "past_questions_limit": 10,
        "temperature": "0.5",
        "thinking_mode": "1",
        "chunk_size": 300
    }
}

Response Fields#

FieldTypeDescription
messagestringResponse status message.
dataobjectChatbot AI settings object.
data.system_prompt_textstringSystem prompt used to configure chatbot behavior.
data.llm_api_keystringAPI key associated with the LLM provider.
data.not_found_answerstringDefault response when no relevant answer is found.
data.tonestringConfigured conversational tone for the chatbot.
data.chunk_overlapinteger | nullOverlap size between text chunks during processing.
data.enable_chatbot_memorybooleanIndicates whether chatbot memory is enabled.
data.question_pre_processingbooleanIndicates whether question preprocessing is enabled.
data.past_questions_limitintegerNumber of previous questions retained in memory.
data.temperaturestringTemperature value controlling response randomness.
data.thinking_modestringInternal thinking or reasoning mode configuration.
data.chunk_sizeintegerMaximum chunk size used for text processing.

Request

Path Params

Body Params application/jsonRequired

Examples

Responses

🟢200Success
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://agents.robofy.ai/ai-agent/chatbot_ai_settings//' \
--header 'Content-Type: application/json' \
--data '{}'
Response Response Example
{
    "message": "Explicabo benevolentia dignissimos trepide. Terga usitas comitatus. Pariatur verbum surgo decerno una una derideo.",
    "data": {
        "system_prompt_text": "Excepteur",
        "llm_api_key": "ad",
        "not_found_answer": "magna qui Lorem",
        "tone": "enim id deserunt in Excepteur",
        "chunk_overlap": null,
        "enable_chatbot_memory": false,
        "question_pre_processing": false,
        "past_questions_limit": 70879868,
        "temperature": "consequat Duis Excepteur velit",
        "thinking_mode": "ad aute exercitation",
        "chunk_size": -62400783
    }
}
Modified at 2026-05-08 08:48:40
Previous
Update System Prompt
Next
Update Persona
Built with