POST /documents/upload
, response id
also called upload_id
, which can be used for document related APIs:GET /documents/{upload_id}
DELETE /documents/{upload_id}
POST /questions?upload_id={upload_id}
POST /documents/upload
POST /collections/clone-documents
.curl --location --request POST 'https://dev.your-api-server.com/collections' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "string"
}'
{
"id": "string",
"status": 1,
"name": "string",
"created_at": 0,
"type": "collection"
}