Skip to main content
POST
/
v1
/
namespaces
/
{namespace_id}
/
plugins
/
reconfigure
Reconfigure namespace Qdrant schema
curl --request POST \
  --url https://api.mixpeek.com/v1/namespaces/{namespace_id}/plugins/reconfigure \
  --header 'Content-Type: application/json' \
  --data '
{
  "confirm": true
}
'
{
  "namespace_id": "ns_abc123",
  "status": "reconfigured",
  "previous_points_count": 1500,
  "vectors_added": [
    "fashionsiglip_v1_embedding"
  ],
  "vectors_total": [
    "multilingual_e5_large_instruct_v1",
    "fashionsiglip_v1_embedding"
  ],
  "collections_to_reprocess": [
    "col_xxx",
    "col_yyy"
  ],
  "message": "Qdrant collection reconfigured with 1 new vector(s). 1500 points were deleted. Re-trigger batches on the listed collections to re-ingest data with the new vectors."
}

Documentation Index

Fetch the complete documentation index at: https://docs.mixpeek.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Headers

Authorization
string

REQUIRED: Bearer token authentication using your API key. Format: 'Bearer sk_xxxxxxxxxxxxx'. You can create API keys in the Mixpeek dashboard under Organization Settings.

Examples:

"Bearer YOUR_API_KEY"

"Bearer YOUR_STRIPE_API_KEY"

Path Parameters

namespace_id
string
required

Body

application/json

Request to reconfigure a namespace's Qdrant collection schema.

This is a destructive operation: it deletes and recreates the Qdrant collection with merged vector definitions from all deployed plugins. Existing data is lost and must be re-ingested by triggering batches on each collection.

confirm
boolean
required

Must be True to confirm this destructive operation. Existing Qdrant data will be deleted and must be re-ingested.

Response

Namespace reconfigured successfully

Response from reconfiguring a namespace's Qdrant collection.

namespace_id
string
required

The reconfigured namespace

status
string
required

Operation status: 'reconfigured' or 'no_changes_needed'

previous_points_count
integer
required

Number of Qdrant points that were in the collection before reconfigure

vectors_added
string[]
required

Names of new vector indexes added to the schema

vectors_total
string[]
required

All vector index names in the reconfigured collection

collections_to_reprocess
string[]
required

Collection IDs that need to be re-triggered to populate new vectors

message
string
required

Human-readable status message