(EXPERIMENTAL) Set the status of runtime experimental features

PATCH /experimental-features

Set the status of experimental features that can be toggled at runtime

application/json

Responses

PATCH /experimental-features
curl \
 -X PATCH https://example.meilisearch.com:7700/experimental-features \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "Content-Type: application/json" \
 -d '{"vectorStore":true,"metrics":false,"exportPuffinReports":false}'
Request example
{
  "vectorStore": true,
  "metrics": false,
  "exportPuffinReports": false
}
Response examples (200)
{
  "vectorStore": true,
  "metrics": false,
  "exportPuffinReports": false
}
Response examples (401)
{
  "message": "The Authorization header is missing. It must use the bearer authorization method.",
  "code": "missing_authorization_header",
  "type": "auth",
  "link": "https://docs.meilisearch.com/errors#missing_authorization_header"
}