ericbirdsall
05/15/2024, 7:59 PMcustomsearch_my_cool_search
)
Something like url.resolveScript()
but for a saved search?
I've found you can enter a numeric or non-numeric id into this URL and it works.. but I was hoping for something that's more documented/official?
/app/common/search/searchresults.nl?searchid=customsearch_my_cool_search
OR
/app/common/search/searchresults.nl?searchid=12345
hieu-ng
05/15/2024, 8:08 PM/app/common/search/searchresults.nl?searchid=customsearch_my_cool_search
battk
05/15/2024, 8:51 PMericbirdsall
05/15/2024, 9:03 PMurl.resolveTaskLink({
id: 'LIST_SEARCHRESULTS',
params: {
scriptid: 'customsearch_my_cool_search'
}
})
Which returned:
'/app/common/search/searchresults.nl?compid=XXX_ACCOUNT_ID_HERE&scriptid=customsearch_my_cool_search'
Also tried:
url.resolveTaskLink({
id: 'LIST_SEARCHRESULTS',
params: {
id: 'customsearch_my_cool_search'
}
})
Which returned:
'/app/common/search/searchresults.nl?compid=XXX_ACCOUNT_ID_HERE&id=customsearch_my_cool_search'
battk
05/15/2024, 9:12 PMericbirdsall
05/15/2024, 9:14 PMurl.resolveTaskLink({
id: 'LIST_SEARCHRESULTS',
params: {
searchid: 'customsearch_my_cool_search'
}
})
Which returned:
'/app/common/search/searchresults.nl?compid=XXX_ACCOUNT_ID_HERE&searchid=customsearch_my_cool_search'
And this ☝🏻 link works as expected
Thank you @battk!