GET
/
public
/
ai-assistants
/
chatbot-config
/
{assistant_id}
curl --request GET \
  --url https://api.puretalk.ai/api/public/ai-assistants/chatbot-config/{assistant_id} \
  --header 'X-API-KEY: <api-key>'
{
  "msg": "<string>",
  "err": true,
  "results": {
    "chatbot_logo": "<string>",
    "chatbot_accent_color": "<string>",
    "chatbot_faq": [
      {
        "answer": "<string>",
        "question": "<string>"
      }
    ],
    "chatbot_whitelisted_domains": [
      "<string>"
    ],
    "name": "<string>"
  }
}

Authorizations

X-API-KEY
string
header
required

Path Parameters

assistant_id
string
required

ID of AI Assistant to return chatbot config

Response

200
application/json
Chatbot config response
msg
string
err
boolean
results
object