Home

Search Tokens for Search List

You can use the search tokens available in the Search List tab and refine your search results. Click each token to learn more about it.

Generic

andand

Use a boolean query to express your query using AND logic.

Example

Find search lists with certain type and tag

searchList.type:"DYNAMIC" AND tags.name: "Internal"

notnot

Use a boolean query to express your query using NOT logic.

Example

Show search lists that are not dynamic search lists

NOT searchList.type:DYNAMIC

oror

Use a boolean query to express your query using OR logic.

Example

Show findings with one of these id values

searchList.id:1234 OR searchList.id:3456

Search List Tokens

Use these search tokens to find search lists.

searchList.idsearchList.id

Use an integer value to find search list with the specified ID.

Example

Find search list with given ID

searchList.id: 9725

searchList.isAuthTestsearchList.isAuthTest

Use the values true | false to find whether the search list which is used in Authenticated Test scan.

Examples

Find search list which is used for Authentication Test scan

searchList.isAuthTest: true

Find search list that is used for Authentication Test scan

searchList.isAuthTest: false

searchList.isSystemsearchList.isSystem

Use the values true | false to find whether the search list is a system-created search list.

Find the system-created search list

searchList.isSystem:true

Find search List which is not created by System

searchList.isSystem: false

searchList.namesearchList.name

Use values within quotes or backticks to find search list with the specified name.

Examples

Find search list that contains part of the given name

searchList.name:"static"

Find search list with given name

searchList.name:`Static SL`

searchList.typesearchList.type

Use a text value ##### to find search list with specified type: STATIC, DYNAMIC.

Example

Find the dynamic search list

searchList.type: DYNAMIC

searchList.createdsearchList.created

Use a date range or specific date to find search lists that were created on the given date or date range.

Examples

Show search lists which were created in past 6 months

searchList.created: [now-6M .. now]

Show search lists which were created on a specified date

searchList.created: "2020-03-20"

Show search lists which were created after a specified date

searchList.created > "2020-03-20"

Show search lists created between March 2020 to July 2021

searchList.created: [2020-03-01 .. 2020-12-31]

searchList.createdBy.firstNamesearchList.createdBy.firstName

Use values within quotes or backticks to find search lists created by specified user’s first name.

Example

Find search lists that are created by user whose first name is Chandler

searchList.createdBy.firstName: Chandler

searchList.createdBy.lastNamesearchList.createdBy.lastName

Use values within quotes or backticks to find search lists created by specified user’s last name.

Example

Find search lists that are created by user whose last name is  Bing

searchList.createdBy.lastName:"Bing"

searchList.createdBy.usernamesearchList.createdBy.username

Use values within quotes or backticks to find search lists created by specified username.

Example

Find search lists that were created by a user with username is quays_pp

searchList.createdBy.username:"quays_pp"

searchList.updatedsearchList.updated

Use a date range or specific date to find search lists that were updated in the given date range.

Examples

Find search lists that were updated in past 6 months

searchList.updated: [now-6M .. now]

Find search lists that were updated on a specified date

searchList.updated: "2020-03-20"

Find search lists that were updated after a specified date

searchList.updated > "2020-03-20"

Find search lists that were updated between March 2020 to Dec 2020

searchList.updated: [2020-03-01 .. 2020-12-31]

searchList.updatedBy.firstNamesearchList.updatedBy.firstName

Use values within quotes or backticks to find search lists updated by specified user’s first name.

Example

Find search lists that are updated by user whose first name is Chandler

searchList.updatedBy.firstName: Chandler

searchList.updatedBy.lastNamesearchList.updatedBy.lastName

Use values within quotes or backticks to find search lists updated by specified user’s last name.

Example

Find search lists that are updated by user whose last name is Bing

searchList.updatedBy.lastName:"Bing"

searchList.updatedBy.usernamesearchList.updatedBy.username

Use values within quotes or backticks to find search lists updated by specified username.

Example

Find search lists that were updated by a user with username is quays_pp

searchList.updatedBy.username"quays_pp"

searchList.owner.firstNamesearchList.owner.firstName

>Use values within quotes or backticks to find search lists with owner's first name.

Example

Find search lists with owner's first name as Chandler

searchList.owner.firstName: Chandler

searchList.owner.lastNamesearchList.owner.lastName

Use values within quotes or backticks to find search lists with owner's last name.

Example

Find search lists with owner's last name as Bing

searchList.owner.lastName: Bing

searchList.owner.usernamesearchList.owner.username

Use values within quotes or back ticks to find search lists with owner's username.

Example

Find search lists with owner's username as quays_pp

searchList.owner.username: quays_pp

tags.nametags.name

Use values within quotes or backticks to find search lists that are associated with the specified tag(s).

Examples

Find search lists which have part of the tag named "Internal P1" associated with it

tags.name:"Internal P1"

Find search lists which have tag named "Dev Internal" or "Production" associated with it.

tags.name:["Dev Internal", "Production"]

Find search lists which have tag named `Target` associated with it.

tags.name:`Target1`

searchList.quickFilterssearchList.quickFilters

Use a text value ##### to find search lists with specified quick filters: MY_SEARCH_LIST, IN_USE, NOT_IN_USE

Examples

Find search lists with current user as owner.

searchList.quickFilter:MY_SEARCH_LIST

Find search lists currently associated with any option profile.

searchList.quickFilters:IN_USE

Find search lists currently not associated with any option profile.

searchList.quickFilters:NOT_IN_USE

optionProfile.idoptionProfile.id

Use an integer value to find search list used in Option Profile with given id.

Example

Find search list that is used in the Option Profile with ID 9725

optionProfile.id: 9725

optionProfile.nameoptionProfile.name

Use values within quotes or backticks to find search lists that is used in option profile with given name.

Examples

Find search list that is used in the option profile that contains part of the name TestOP

optionProfile.name:"TestOP"

Find search list that is used in the option profile with name TestOP

optionProfile.name:`TestOP`