Get all data views

GET /api/data_views

Responses

  • 200 application/json

    Indicates a successful call.

    Hide response attribute Show response attribute object
    • data_view array[object]
      Hide data_view attributes Show data_view attributes object
      • id string
      • name string
      • namespaces array[string]
      • title string
      • typeMeta object
  • 400 application/json

    Bad request

    Hide response attributes Show response attributes object
    • error string Required
    • message string Required
    • statusCode number Required
GET /api/data_views
curl \ --request GET 'https://<KIBANA_URL>/api/data_views' \ --header "Authorization: $API_KEY"
Response examples (200)
{ "data_view": [ { "id": "ff959d40-b880-11e8-a6d9-e546fe2bba5f", "name": "Kibana Sample Data eCommerce", "title": "kibana_sample_data_ecommerce", "typeMeta": {}, "namespaces": [ "default" ] }, { "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", "name": "Kibana Sample Data Flights", "title": "kibana_sample_data_flights", "namespaces": [ "default" ] }, { "id": "90943e30-9a47-11e8-b64d-95841ca0b247", "name": "Kibana Sample Data Logs", "title": "kibana_sample_data_logs", "namespaces": [ "default" ] } ] }