Get List of Scan Profiles
Use this API to retrieve a list of all scan profiles. The response will include details for each scan profile along with the corresponding scan profile ID and its associated scan type, system, and paths.
Query parameters
The parameter to search for a scan profile by name.
A system name. Include to filter results to be limited to scan profiles with this system. Some examples are "Box", "Snowflake", and "MongoDB".
It is the scan profile type.
Include a date (yyyy-mm-dd) to filter the results to scan profiles created on or after the specified date. For example, including the parameter createdFrom=2021-08-17 will filter results to scan profiles on or after August 17th, 2021.
Include a date (yyyy-mm-dd) to filter the results to scan profiles created on or before the specified date. For example, including the parameter createdTo=2021-08-17 would filter results to scan profiles on or before August 17th, 2021.
Results page to be retrieved (0..N).
Results page to be retrieved (0..N).
Number of records per page (1..50). Maximum page size allowed is 50
Number of records per page (1..50). Maximum page size allowed is 50
Sorting criteria in the format: property(,asc|desc). Default is ascending.
Sorting criteria in the format: property(,asc|desc). Default is ascending.
Response
Successfully retrieved scan profiles
Example response
{
"content": [
{
"id": 1,
"name": "Item"
}
],
"size": 20,
"numberOfElements": 15,
"totalElements": 150,
"totalPages": 8,
"first": true
}