Chatbots
Retrieve chatbot
Members
Chatbots
Conversations
Knowledge base
Chatbots
Retrieve chatbot
Retrieve a chatbot by its ID.
GET
/
chatbots
/
{chatbotId}
curl --request GET \
--url https://api.chatling.ai/v2/chatbots/{chatbotId} \
--header 'Authorization: Bearer <token>'
{
"status": "success",
"data": {
"id": "9761342719",
"name": "My chatbot",
"version": "2.0",
"visibility": "public",
"created_at": "2024-06-17T12:00:00+00:00"
}
}
Request parameters
Path
The chatbot ID.
Response
The status of the request. Will be success
if the request was successful, otherwise error
.
{
"status": "success",
"data": {
"id": "9761342719",
"name": "My chatbot",
"version": "2.0",
"visibility": "public",
"created_at": "2024-06-17T12:00:00+00:00"
}
}
curl --request GET \
--url https://api.chatling.ai/v2/chatbots/{chatbotId} \
--header 'Authorization: Bearer <token>'
{
"status": "success",
"data": {
"id": "9761342719",
"name": "My chatbot",
"version": "2.0",
"visibility": "public",
"created_at": "2024-06-17T12:00:00+00:00"
}
}