POST
/
chatbots
/
{chatbotId}
/
duplicate
curl --request POST \
  --url https://api.chatling.ai/v2/chatbots/{chatbotId}/duplicate \
  --header 'Authorization: Bearer <token>'
{
    "status": "success",
    "data": {
        "chatbot_id": "5285975738"
    }
}

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": {
        "chatbot_id": "5285975738"
    }
}