Bulk update dashboards
Technical Preview
Bulk update dashboards linked to a stream. Can link new dashboards and delete existing ones.
Path parameters
-
name
string Required
Body
-
operations
array[object] Required
POST
/api/streams/{name}/dashboards/_bulk
curl \
--request POST http://localhost:5622/api/streams/{name}/dashboards/_bulk \
--header "Authorization: $API_KEY" \
--header "Content-Type: application/json" \
--header "kbn-xsrf: true" \
--data '{"operations":[{"index":{"id":"string"}}]}'
Request examples
# Headers
kbn-xsrf: true
# Payload
{
"operations": [
{
"index": {
"id": "string"
}
}
]
}