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
Use a boolean query to express your query using AND logic.
Example
Find search lists with certain type and tag
searchList.type:"DYNAMIC" AND
report.template.tag.name: "Internal"
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
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.
report.template.idreport.template.id
Use an integer value to find the report template with the specified ID.
Example
Find report template with the given ID
report.template.id:9725
report.template.namereport.template.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
report.template.name:"TestParam"
Find report template with given name
report.template.name:`TestParam`
report.template.isDefaultreport.template.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
report.template.isDefault:true
Find report templates which is not marked as default for your subscription
report.template.isDefault:false
report.template.createdDatereport.template.createdDate
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
report.template.createdDate:[now-6M .. now]
Show report templates that were created on a specified date
report.template.createdDate:"2020-03-20"
Show report templates that were created after a specified date
report.template.createdDate >"2020-03-20"
Show report templates created between March 2020 to July 2021
report.template.createdDate:[2020-03-01 .. 2020-12-31]
report.template.createdBy.firstNamereport.template.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
report.template.createdBy.firstName:Chandler
report.template.createdBy.lastNamereport.template.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
report.template.createdBy.lastName:Bing
report.template.createdBy.usernamereport.template.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
report.template.createdBy.username:quays_pp
report.template.updatedDatereport.template.updatedDate
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
report.template.updatedDate:[now-6M .. now]
Show report templates that were updated on a specified date
report.template.updatedDate:"2020-03-20"
Show report templates that were updated after a specified date
report.template.updatedDate >"2020-03-20"
Show report templates updated between March 2020 to July 2021
report.template.updatedDate:[2020-03-01 .. 2020-12-31]
report.template.updatedBy.firstNamereport.template.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
report.template.updatedBy.firstName:Chandler
report.template.updatedBy.lastNamereport.template.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
report.template.updatedBy.lastName:Bing
report.template.updatedBy.usernamereport.template.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
report.template.updatedBy.username:quays_pp
report.template.owner.firstNamereport.template.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
report.template.owner.firstName:Chandler
report.template.owner.lastNamereport.template.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
report.template.owner.lastName:Bing
report.template.owner.usernamereport.template.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
report.template.owner.username:quays_pp
report.template.tag.namereport.template.tag.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
report.template.tag.name:"Internal P1"
Find report templates that have part of the tag named "Dev Internal" or "Production" associated with it
report.template.tag.name:["Dev Internal", "Production"]
Find report templates which have the tag named Target1 associated with it
report.template.tag.name:`Target1`
report.template.typereport.template.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
report.template.type:`WEB APPLICATION REPORT`
Find report templates for WAS scan report
report.template.type:`SCAN REPORT`