Last updated 1 month ago
Upload files to a vector store.
The ID of the vector store.
The files to upload.
Files uploaded successfully.
const response = await fetch('https://api.rememberizer.ai/api/v1/vector-stores/{vector-store-id}/documents/upload', { method: 'POST', headers: { "x-api-key": "text", "Content-Type": "multipart/form-data" }, body: JSON.stringify({}), }); const data = await response.json();
{ "documents": [ { "name": "text" } ], "errors": [ { "file": "text", "error": "text" } ] }