Skip to main content
POST
/
v1
/
knowledge_bases
cURL
curl --request POST \
  --url https://api.fluents.ai/v1/knowledge_bases \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "label": "My Knowledge Base",
  "webhookUrl": "https://example.com/webhook"
}
'

Documentation Index

Fetch the complete documentation index at: https://docs.fluents.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
label
string
required
Example:

"My Knowledge Base"

webhookUrl
string
Example:

"https://example.com/webhook"

Response

201 - undefined