Search url Saved Objects by Title

Kibana 7.17.28 (yes, I know.)

In the Stack Management > Saved Objects section there is a Search field. I want to search for objects of type url with a given Title, or even a given id attribute which I've extracted from exported JSON. I've tried various query formats but none of them work and I can't find any information about what the Search field accepts.

What do I put in the Search field here:

to make it so that the list contains just the object with a Title of /goto/85bd3490-4814-11ef-9f7b-67a2b5099a35 ?

Hello @mikewillis

 1. via API using DevTools

    `GET kbn:/api/saved_objects/url/85bd3490-4814-11ef-9f7b-67a2b5099a35`
  1. Export the URL objects in single file & search the string you need , it will show the count of occurrence
  2. On GUI filter for type URL than do control-F on Chrome & search the ID

Thanks!!

1 Like

Thanks, those are all potentially useful, but none of them are an answer to the question I asked.

2 Likes

Hello @mikewillis

I believe that search is not possible as it contains - as part of the ID.

Thanks!!