POST
/
api
/
v1
/
bot
/
org
/
{org_id}
/
project
/
{project_id}
/
createBot
curl --request POST \
  --url https://app.aptlystar.ai/api/v1/bot/org/{org_id}/project/{project_id}/createBot \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: */*' \
  --data '{
  "content": "<string>",
  "type": "text",
  "name": "<string>",
  "embedding": "<string>",
  "model": "<string>",
  "maxDepth": 123,
  "maxLinks": 123,
  "options": {},
  "team": "<string>",
  "getprompt": "<string>",
  "dataStore": [
    "<any>"
  ]
}'

Headers

Authorization
string
required

Path Parameters

org_id
string
required
project_id
string
required

Body

*/*