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

chatbotId
string
required

The chatbot ID.

Response

status
string

The status of the request. Will be success if the request was successful, otherwise error.

data
object
{
    "status": "success",
    "data": {
        "id": "9761342719",
        "name": "My chatbot",
        "version": "2.0",
        "visibility": "public",
        "created_at": "2024-06-17T12:00:00+00:00"
    }
}