Export Kibana objects
POST/v1/kibana/export
Exports the configuration of Kibana objects. All objects of a single type (search, visualization, or dashboard) are returned as an array of JSON objects. For example, if you export visualization
, each visualization is returned as a JSON object.
You can import objects using the /kibana/import endpoint. Please ensure to change the region in the URL to match your account's region.
Request
- application/json
Body
type stringrequired
Possible values: [search
, visualization
, dashboard
]
The object type to export
Responses
- 200
successful operation
- application/json
- Schema
- Example (from schema)
Schema
kibanaVersion string
The version of Kibana used at the time of export
hits object[]
Exported Kibana objects
{
"kibanaVersion": "4.0.0-beta3",
"hits": [
{}
]
}
Loading...