Get all Kibana spaces API

[experimental] This functionality is experimental and may be changed or removed completely in a future release. Elastic will take a best effort approach to fix any issues, but experimental features are not subject to the support SLA of official GA features. Retrieve all Kibana spaces.

Request

GET <kibana host>:<port>/api/spaces/space

Response code

200

Indicates a successful call.

Example

The API returns the following:

  1. [
  2. {
  3. "id": "default",
  4. "name": "Default",
  5. "description" : "This is the Default Space",
  6. "disabledFeatures": [],
  7. "imageUrl": "",
  8. "_reserved": true
  9. },
  10. {
  11. "id": "marketing",
  12. "name": "Marketing",
  13. "description" : "This is the Marketing Space",
  14. "color": "#aabbcc",
  15. "disabledFeatures": ["apm"],
  16. "initials": "MK",
  17. "imageUrl": "data:image/png;base64,iVBORw0KGgoAAAANSU"
  18. },
  19. {
  20. "id": "sales",
  21. "name": "Sales",
  22. "initials": "MK",
  23. "disabledFeatures": ["discover", "timelion"],
  24. "imageUrl": ""
  25. }
  26. ]

Most Popular