- README
- Authentication
- Guides
- API Keys
- Chats
- Documents
- Knowledge Bots
Update Document
PUT
/api/documents/{documentId}
document
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
documentId
string
required
Body Params application/json
name
string
optional
user_metadata
string | integer | boolean | array | object | number | null
optional
Example
{
"name": "Tutorial: How to do X",
"user_metadata": {
"url": "https://google.de"
}
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://app.crbnai.com/api/documents/' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "Tutorial: How to do X",
"user_metadata": {
"url": "https://google.de"
}
}'
Responses
🟢200OK
text/plain
Body
object {0}
Example
{
"id": "doc_01hdnmm8azwy6dhbsacx8w6c9k",
"knowledge_bot_id": "kb_01ha1ntvyq68jxezgnkwr63wm1",
"name": "Tutorial: How to do X",
"status": "READY",
"user_metadata": {
"url": "https://google.de"
}
}
Modified at 2023-12-14 17:19:14