Chatbots
Create a new chatbot
POST
/
chatbot
curl --request POST \
--url https://api.vectorshift.ai/v1/chatbot \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"pipeline": {
"id": "<string>",
"version": "latest"
},
"name": "<string>",
"description": "<string>",
"deployment_options": {},
"access_config": {},
"twilio_config": {},
"slack_config": {},
"deployed": true,
"input": "<string>",
"output": "<string>"
}'
{
"status": "success",
"id": "<string>"
}
Authorizations
Bearer token authentication using API key
Body
Response
200
application/json
Successful response
The response is of type object
.
curl --request POST \
--url https://api.vectorshift.ai/v1/chatbot \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"pipeline": {
"id": "<string>",
"version": "latest"
},
"name": "<string>",
"description": "<string>",
"deployment_options": {},
"access_config": {},
"twilio_config": {},
"slack_config": {},
"deployed": true,
"input": "<string>",
"output": "<string>"
}'
{
"status": "success",
"id": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.