mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
* Adds documentation for Saved Objects API Signed-off-by: Tyler Smalley <tyler.smalley@elastic.co> * [DOCS] Moved Rest APIs in navigation * docs: revise rest api intro * docs: revise create object api details * docs: revise saved object api intro * docs: revise delete saved object api details * docs: remove newline character from api response * docs: get saved object api details * docs: update saved object api details * docs: fix title attribute in saved object api examples * docs: bulk-get saved object api details * docs: find saved object api details * docs: add index-pattern to valid types in api * docs: clarify sending multiple values in api * docs: note that savedObjects.find is not safe for export
84 lines
2.4 KiB
Text
84 lines
2.4 KiB
Text
[[saved-objects-api-find]]
|
|
=== Find Objects
|
|
|
|
experimental[This functionality is *experimental* and may be changed or removed completely in a future release.]
|
|
|
|
The find saved object API enables you to retrieve a paginated set of Kibana
|
|
saved objects by various conditions.
|
|
|
|
==== Request
|
|
|
|
`GET /api/saved_objects/_find`
|
|
|
|
==== Query Parameters
|
|
|
|
`per_page` (optional)::
|
|
(number) The number of objects to return per page
|
|
`page` (optional)::
|
|
(number) The page of objects to return
|
|
`type` (optional)::
|
|
(array|string) The saved object type(s) that the response should be limited to
|
|
`search` (optional)::
|
|
(string) A {ref}/query-dsl-simple-query-string-query.html[simple_query_string] Elasticsearch query to filter the objects in the response
|
|
`search_fields` (optional)::
|
|
(array|string) The fields to perform the `simple_query_string` parsed query against
|
|
`fields` (optional)::
|
|
(array|string) The fields to return in the response
|
|
`sort_field` (optional)::
|
|
(string) The field on which the response will be sorted
|
|
|
|
[NOTE]
|
|
==============================================
|
|
|
|
As objects change in Kibana, the results on each page of this response can
|
|
change. This makes the `find` API suitable for traditional paginated results
|
|
but not a reliable way to safely export large amounts of data.
|
|
|
|
==============================================
|
|
|
|
|
|
==== Examples
|
|
|
|
The following example attempts to find index patterns with titles that start
|
|
with `my`:
|
|
|
|
[source,js]
|
|
--------------------------------------------------
|
|
GET api/saved_objects/_find?type=index-pattern&search_fields=title&search=my*
|
|
--------------------------------------------------
|
|
// KIBANA
|
|
|
|
A successful call returns a response code of `200` and a response body
|
|
containing a JSON structure similar to the following example:
|
|
|
|
[source,js]
|
|
--------------------------------------------------
|
|
{
|
|
"total": 1,
|
|
"data": [
|
|
{
|
|
"id": "my-pattern",
|
|
"type": "index-pattern",
|
|
"version": 1,
|
|
"attributes": {
|
|
"title": "my-pattern-*"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
--------------------------------------------------
|
|
|
|
[NOTE]
|
|
.Multiple values for a parameter
|
|
==============================================
|
|
|
|
For parameters that can accept multiple values (e.g. `fields`), repeat the
|
|
query parameter for each value:
|
|
|
|
[source,js]
|
|
--------------------------------------------------
|
|
GET api/saved_objects/_find?fields=id&fields=title
|
|
--------------------------------------------------
|
|
// KIBANA
|
|
|
|
==============================================
|