Hi
Currently Im using below to export dashbaords
curl -X POST "localhost:5601/api/saved_objects/_export" -H 'kbn-xsrf: true' -H 'Content-Type: application/json' -d'
{
"type": "dashboard"
}' > /tmp/dashboard.ndjson 2>/dev/null
But I need another script to export specific dashboards. I have list a dashboards. I need to export all except those in that list. Put it simple I need a query string in export to filter out few objects
Is it possible in Kibana 7.10.2?