Community Tip - You can Bookmark boards, posts or articles that you'd like to access again easily! X
Is it possible to perform a query string search for TWX Navigate? (e.g. https://www.google.com/search?q=searchedtext)
I just wanted to embed a part search copying the content of a label.
many thanks
Solved! Go to Solution.
Hi,
I think i get your point now. But search pattern is not managed in URL but in POST payload. So i don't see a way achieving your need with OOTB env.
Kind regards.
Hello,
You can do some Search against Windchill with ODATA REST call as :
https://<WINDCHILL_SERVER>/Windchill/servlet/odata/v4/SavedSearch/SavedQueries('OR%3Awt.query.SavedQuery%3A204280')/PTC.SavedSearch.ExecuteSavedSearch(Keyword='TOTO')
Need to have a reference to a SavedQuery. You can find it with REST call as : https://<WINDCHILL_SERVER>/Windchill/servlet/odata/v4/SavedSearch/SavedQueries?%24count=false
Otherwise you can use legacy swagger :
https://<WINDCHILL_SERVER>//Windchill/netmarkets/jsp/restapi/index.html#!/Search/searchObjects
Kind regards.
Thank you, I'll try. Anyway, I wanted the equivalent one for thingworx navigate interface, since this experience is mobile-based.
Hi,
I think i get your point now. But search pattern is not managed in URL but in POST payload. So i don't see a way achieving your need with OOTB env.
Kind regards.