- Kibana Guide: other versions:
- Introduction
- Get started
- Set Up Kibana
- Discover
- Visualize
- Creating a Visualization
- Saving Visualizations
- Using rolled up data in a visualization
- Line, Area, and Bar charts
- Controls Visualization
- Data Table
- Markdown Widget
- Metric
- Goal and Gauge
- Pie Charts
- Coordinate Maps
- Region Maps
- Timelion
- TSVB
- Tag Clouds
- Heatmap Chart
- Vega Graphs
- Inspecting Visualizations
- Dashboard
- Canvas
- Graph data connections
- Machine learning
- Elastic Maps
- Code
- Infrastructure
- Logs
- APM
- Uptime
- SIEM
- Dev Tools
- Stack Monitoring
- Management
- Reporting from Kibana
- REST API
- Kibana plugins
- Limitations
- Release Highlights
- Breaking Changes
- Release Notes
- Developer guide
IMPORTANT: No additional bug fixes or documentation updates
will be released for this version. For the latest information, see the
current release documentation.
Update Space
edit
IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.
Update Space
editThis API is experimental and may be changed or removed completely in a future release. The underlying Spaces concepts are stable, but the APIs for managing Spaces are currently experimental.
Updates an existing Kibana space. To create a new space, use the POST command.
Note: You cannot access this endpoint via the Console in Kibana.
Request
editTo update a space, issue a PUT request to the
/api/spaces/space/<space_id>
endpoint.
PUT /api/spaces/space/<space_id>
Request Body
editThe following parameters can be specified in the body of a PUT request to update a space:
-
id
- (string) Required identifier for the space. This identifier becomes part of Kibana’s URL when inside the space. This cannot be changed by the update operation.
-
name
- (string) Required display name for the space.
-
description
- (string) Optional description for the space.
-
disabledFeatures
- (string array) Optional list of features that are disabled for the space. Use the Features API to get a list of available features IDs.
-
initials
- (string) Optionally specify the initials shown in the Space Avatar for this space. By default, the initials will be automatically generated from the space name. If specified, initials should be either 1 or 2 characters.
-
color
- (string) Optioanlly specify the hex color code used in the Space Avatar for this space. By default, the color will be automatically generated from the space name.
Example
editPUT /api/spaces/space/marketing { "id": "marketing", "name": "Marketing", "description" : "This is the Marketing Space", "color": "#aabbcc", "initials": "MK", "disabledFeatures": [] }
Response
editA successful call returns a response code of 200
with the updated Space.
On this page
Was this helpful?
Thank you for your feedback.