Authorizations
Bearer token authentication using API key
Body
Response
Knowledge base created successfully
The response is of type object
.
curl --request POST \
--url https://api.vectorshift.ai/v1/knowledge-base \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"description": "<string>",
"file_processing_implementation": "Default",
"chunk_size": 123,
"chunk_overlap": 123,
"analyze_documents": true,
"apify_key": "<string>"
}'
{
"status": "success",
"id": "<string>"
}
curl --request POST \
--url https://api.vectorshift.ai/v1/knowledge-base \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"description": "<string>",
"file_processing_implementation": "Default",
"chunk_size": 123,
"chunk_overlap": 123,
"analyze_documents": true,
"apify_key": "<string>"
}'
{
"status": "success",
"id": "<string>"
}
Bearer token authentication using API key
Knowledge base created successfully
The response is of type object
.