POST
/
api
/
v1
/
chatbot
/
create
curl --location --request POST 'https://app.gptchatbot.it/api/v1/chatbot/create' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <token>' \
--data-raw '{
  "name": "string",
  "rate_limit": [
    20,
    240
  ],
  "rate_limit_message": "Too many messages",
  "show_citations": false,
  "visibility": "private"
}'
{
  "created_at": "string",
  "meta": {
    "rate_limit": [20, 240],
    "rate_limit_message": "Too many messages",
    "show_citations": false,
    "visibility": "private"
  },
  "modified_at": "string",
  "name": "string",
  "uuid": "string"
}

Body

name
string
required
visibility
string
rate_limit
[number, number]
rate_limit_message
string
show_citations
boolean

Response

created_at
string
meta
object

The meta of chatbot

modified_at
string
name
string
uuid
string
curl --location --request POST 'https://app.gptchatbot.it/api/v1/chatbot/create' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <token>' \
--data-raw '{
  "name": "string",
  "rate_limit": [
    20,
    240
  ],
  "rate_limit_message": "Too many messages",
  "show_citations": false,
  "visibility": "private"
}'
{
  "created_at": "string",
  "meta": {
    "rate_limit": [20, 240],
    "rate_limit_message": "Too many messages",
    "show_citations": false,
    "visibility": "private"
  },
  "modified_at": "string",
  "name": "string",
  "uuid": "string"
}