Resolve saved objects Deprecated
Retrieve multiple Kibana saved objects by identifier using any legacy URL aliases if they exist. Under certain circumstances when Kibana is upgraded, saved object migrations may necessitate regenerating some object IDs to enable new features. When an object's ID is regenerated, a legacy URL alias is created for that object, preserving its old ID. In such a scenario, that object can be retrieved by the bulk resolve API using either its new ID or its old ID.
POST
/api/saved_objects/_bulk_resolve
curl \
--request POST https://localhost:5601/api/saved_objects/_bulk_resolve \
--header "Content-Type: application/json" \
--header "kbn-xsrf: string" \
--data '[{}]'
Request examples
# Headers
kbn-xsrf: string
# Payload
[
{}
]
Response examples (200)
{}
Response examples (400)
{
"error": "Bad Request",
"message": "string",
"statusCode": 400
}