Apply DataView indices to all installed engines Beta

POST /api/entity_store/engines/apply_dataview_indices

Responses

  • 200 application/json; Elastic-Api-Version=2023-10-31

    Successful response

    Hide response attributes Show response attributes object
    • result array[object]
      Hide result attributes Show result attributes object
      • changes object

        Additional properties are allowed.

        Hide changes attribute Show changes attribute object
      • type string Required
    • success boolean
  • 207 application/json; Elastic-Api-Version=2023-10-31

    Partial successful response

    Hide response attributes Show response attributes object
  • 500 application/json; Elastic-Api-Version=2023-10-31

    Error response

    Hide response attributes Show response attributes object
POST /api/entity_store/engines/apply_dataview_indices
curl \
 -X POST https://localhost:5601/api/entity_store/engines/apply_dataview_indices
Response examples (200)
{
  "result": [
    {
      "changes": {
        "indexPatterns": [
          "string"
        ]
      },
      "type": "string"
    }
  ],
  "success": true
}
Response examples (207)
{
  "errors": [
    "string"
  ],
  "result": [
    {
      "changes": {
        "indexPatterns": [
          "string"
        ]
      },
      "type": "string"
    }
  ],
  "success": true
}
Response examples (500)
{
  "body": "string",
  "statusCode": 42.0
}