cURL
curl --request POST \ --url https://api.example.com/user/upload/advanced \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: multipart/form-data' \ --form file='@example-file' \ --form 'ingestion_settings=<string>' \ --form 'search_settings=<string>'
{ "knowledge_id": 123, "owner_id": 123, "name": "<string>", "file_format": "<string>", "file_size_bytes": 123, "status": "<string>", "chunk_count": 123, "progress": 123, "uploaded_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z", "folder_path": "<string>", "error_message": "<string>" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful Response