POST
/
api
/
projects
/
{projectName}
/
chatbots
curl --request POST \
  --url http://127.0.0.1:47334/api/projects/{projectName}/chatbots \
  --header 'Content-Type: application/json' \
  --data '{
  "chatbot": {
    "name": "<string>",
    "database_name": "<string>",
    "agent_name": "<string>"
  }
}'
{
  "name": "<string>",
  "database_name": "<string>",
  "agent_name": "<string>"
}

Path Parameters

projectName
string
required

The name of the project where agent resides

Body

application/json

Response

200
application/json
Created a chatbot

The response is of type object.