Search.searchId
Property Description |
Internal ID of the search. The internal ID is available only when the search is either loaded with search.load(options) or after is has been saved with Search.save(). Typical values are 55 or 234 or 87, not a value like |
Type |
number (read-only) |
Module |
|
Since |
2015.2 |
Syntax
Important:
The following code sample shows the syntax for this member. It is not a functional example. For a complete script example, see N/search Module Script Samples.
//Add additional code
...
var mySearch = search.load({
id: 'customsearch_my_so_search'
});
log.debug({
title: 'search id #: ',
details: mySearch.searchId
});
...
//Add additional code