Chatbot
Get Chatbot By Id
Chatbot
Get Chatbot By Id
Get your chatbot by it’s id.
GET
/
v1
/
chatbot
/
{id}
curl --request GET \
--url https://api.droxy.ai/v1/chatbot/{id} \
--header 'x-api-key: <api-key>'
{
"id": "<string>",
"name": "<string>",
"welcomeMessage": "<string>",
"createdAt": 123,
"creator": "<string>",
"organisation": "<string>",
"resources": [
"<string>"
],
"chatbotMessageColor": "<string>",
"userMessageColor": "<string>",
"conversationBackgroundColor": "<string>",
"secondaryBackgroundColor": "<string>",
"gradientColors": [
"<string>"
],
"showBadge": true,
"enabledEmoji": true,
"customSystemPrompt": "<string>",
"model": "<string>",
"restrictAnswersToResourcesContentResponse": "<string>",
"accessLevel": "<string>",
"tags": [
"<string>"
],
"websiteIntegration": {
"allowedDomains": [
"<string>"
],
"bubbleAlignment": "<string>",
"bubblePopupMessages": [
"<string>"
],
"welcomeHeaderTitle": "<string>",
"welcomeHeaderSubtitle": "<string>"
}
}
Authorizations
Path Parameters
The chatbot's id.
Response
200
application/json
OK
The response is of type object
.
curl --request GET \
--url https://api.droxy.ai/v1/chatbot/{id} \
--header 'x-api-key: <api-key>'
{
"id": "<string>",
"name": "<string>",
"welcomeMessage": "<string>",
"createdAt": 123,
"creator": "<string>",
"organisation": "<string>",
"resources": [
"<string>"
],
"chatbotMessageColor": "<string>",
"userMessageColor": "<string>",
"conversationBackgroundColor": "<string>",
"secondaryBackgroundColor": "<string>",
"gradientColors": [
"<string>"
],
"showBadge": true,
"enabledEmoji": true,
"customSystemPrompt": "<string>",
"model": "<string>",
"restrictAnswersToResourcesContentResponse": "<string>",
"accessLevel": "<string>",
"tags": [
"<string>"
],
"websiteIntegration": {
"allowedDomains": [
"<string>"
],
"bubbleAlignment": "<string>",
"bubblePopupMessages": [
"<string>"
],
"welcomeHeaderTitle": "<string>",
"welcomeHeaderSubtitle": "<string>"
}
}