Skip to main content

Import Kibana objects

POST 

/v1/kibana/import

Imports Kibana search, visualization, or dashboard objects. You can export objects using the /kibana/export endpoint.

Request

Body

    kibanaVersion string

    The version of Kibana used at the time of export. This must match the current version of Kibana that you're importing to.

    override boolean

    To update an existing object with the same ID, true. Otherwise, false.

    If override is true, response message shows overwritten objects as updated. If override is false, no existing objects are updated, and response message shows these objects as ignored.

    hits object[]

    Each JSON object in the array represents a discrete Kibana object.

    Note: As a best practice, import only objects that were exported from Kibana.

Responses

successful operation

Schema
    created string[]

    Name of Kibana objects that were created

    updated string[]

    Names of the Kibana objects that were overwritten. Objects are shown here only if override was true in the import call.

    ignored string[]

    Names of the Kibana objects that were not overwritten. Objects are shown here only if override was false in the import call.

    failed string[]

    Names of the Kibana objects that could not be created, updated, or ignored.

Loading...