Home

Search Tokens for Report Templates

You can use the search tokens available in the Templates 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

Report Templates Tokens

Use these search tokens to find report templates.

reportTemplate.idreportTemplate.id

Use an integer value to find the report template with the specified ID.

Example

Find report template with the given ID

reportTemplate.id:9725

reportTemplate.namereportTemplate.name

Use values within quotes or backticks to find report templates with the specified name.

Examples

Find report templates that contain part of the given name

reportTemplate.name:"TestParam"

Find report template with given name

reportTemplate.name:`TestParam`

reportTemplate.isDefaultreportTemplate.isDefault

Use the values true | false to find report template which is marked as default for your subscription.

Examples

Find report template which is marked as default for your subscription

reportTemplate.isDefault:true

Find report templates which is not marked as default for your subscription

reportTemplate.isDefault:false

reportTemplate.createdreportTemplate.created

Use a date range or specific date to find report templates that were created on the given date or date range.

Examples

Show report templates that were created in past 6 months

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

Show report templates that were created on a specified date

reportTemplate.created:"2020-03-20"

Show report templates that were created after a specified date

reportTemplate.created >"2020-03-20"

Show report templates created between March 2020 to July 2021

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

reportTemplate.createdBy.firstNamereportTemplate.createdBy.firstName

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

Example

Find report templates that are created by user whose first name is Chandler

reportTemplate.createdBy.firstName:Chandler

reportTemplate.createdBy.lastNamereportTemplate.createdBy.lastName

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

Example

Find report templates that are created by user whose last name is Bing

reportTemplate.createdBy.lastName:Bing

reportTemplate.createdBy.usernamereportTemplate.createdBy.username

Use values within quotes or backticks to find report templates created by specified user name.

Example

Find report templates that are created by a user with username is quays_pp

reportTemplate.createdBy.username:quays_pp

reportTemplate.updatedreportTemplate.updated

Use a date range or specific date to find report templates that were updated in the given date range.

Examples

Show report templates that were updated in past 6 months

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

Show report templates that were updated on a specified date

reportTemplate.updated:"2020-03-20"

Show report templates that were updated after a specified date

reportTemplate.updated >"2020-03-20"

Show report templates updated between March 2020 to July 2021

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

reportTemplate.updatedBy.firstNamereportTemplate.updatedBy.firstName

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

Example

Find report templates that are updated by user whose first name is Chandler

reportTemplate.updatedBy.firstName:Chandler

reportTemplate.updatedBy.lastNamereportTemplate.updatedBy.lastName

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

Example

Find report templates that are updated by user whose last name is Bing

reportTemplate.updatedBy.lastName:Bing

reportTemplate.updatedBy.usernamereportTemplate.updatedBy.username

Use values within quotes or backticks to find report templates updated by specified username.

Example

Find report templates that were updated by a user with username is quays_pp

reportTemplate.updatedBy.username:quays_pp

reportTemplate.owner.firstNamereportTemplate.owner.firstName

Use values within quotes or backticks to find report templates with owner's first name.

Example

Find report templates with owner's first name as Chandler

reportTemplate.owner.firstName:Chandler

reportTemplate.owner.lastNamereportTemplate.owner.lastName

Use values within quotes or backticks to find report templates with owner's last name.

Example

Find report templates with owner's last name as Bing

reportTemplate.owner.lastName:Bing

reportTemplate.owner.usernamereportTemplate.owner.username

Use values within quotes or back ticks to find report templates with owner's username.

Example

Find report templates with owner's username as quays_pp

reportTemplate.owner.username:quays_pp

tags.nametags.name

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

Examples

Find report templates that have part of the tag named "Internal P1" associated with it

tags.name:"Internal P1"

Find report templates that have part of the tag named "Dev Internal" or "Production" associated with it

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

Find report templates which have the tag named Target1 associated with it

tags.name:`Target1`

reportTemplate.typereportTemplate.type

Use a text value ##### to find report template for a specific type of report:  CATALOG REPORT, SCAN REPORT, SCORECARD REPORT, WEB APPLICATION REPORT.

Example

Find report templates for WAS web application report

reportTemplate.type:`WEB APPLICATION REPORT`

Find report templates for WAS scan report

reportTemplate.type:`SCAN REPORT`