Agregar un nuevo documento de texto a un Almacén Vectorial

post

Create a new text document in a vector store.

Path parameters
vector-store-idstringrequired

The ID of the vector store.

Header parameters
x-api-keystringrequired

The API key for authentication.

Body
namestringoptional

The name of the document.

textstringoptional

The text content of the document.

Responses
curl -L \
  --request POST \
  --url 'https://api.rememberizer.ai/api/v1/vector-stores/{vector-store-id}/documents/create' \
  --header 'x-api-key: text' \
  --header 'Content-Type: application/json' \
  --data '{
    "name": "text",
    "text": "text"
  }'
{
  "id": 1,
  "name": "text",
  "type": "text",
  "vector_store": "text",
  "size": 1,
  "status": "text",
  "processing_status": "text",
  "indexed_on": "2025-04-02T00:38:56.587Z",
  "status_error_message": "text",
  "created": "2025-04-02T00:38:56.587Z",
  "modified": "2025-04-02T00:38:56.587Z"
}

Last updated