Update saved objects Deprecated
Update the attributes for multiple Kibana saved objects.
Responses
-
200 application/json; Elastic-Api-Version=2023-10-31
Indicates a successful call. NOTE: This HTTP response code indicates that the bulk operation succeeded. Errors pertaining to individual objects will be returned in the response body.
Additional properties are allowed.
-
400 application/json; Elastic-Api-Version=2023-10-31
Bad request
POST /api/saved_objects/_bulk_update
curl \
-X POST https://localhost:5601/api/saved_objects/_bulk_update \
-H "Content-Type: application/json; Elastic-Api-Version=2023-10-31" \
-H "kbn-xsrf: string"
Request examples
# Headers
kbn-xsrf: string
# Payload
[
{}
]
Response examples (200)
{}
Response examples (400)
{
"error": "Bad Request",
"message": "string",
"statusCode": 400
}