Use the list assets API to filter assets across the tenant with many options from Provider, Service, Severity, Integration, etc. By default all assets are returned.
Bearer API Key. For example, "Bearer {Tenant API Key}"
Bearer API Key. For example, "Bearer {Tenant API Key}"
application/json
Filter assets based on Asset IDs. Accepts a comma-separated list.
"id1,id2"
Filter assets based on Integration Execution IDs. Accepts a comma-separated list.
"1678607803935,1778607801234"
Filter assets based on Provider regions. Accepts a comma-separated list of regions.
"us-east-1,us-west-2"
Filter assets based on Plerion Integration IDs. Accepts a comma-separated list.
"integration1,integration2"
Filter assets based on asset group ids. Accepts a comma-separated list of asset group ids.
"assetGroupId1,assetGroupId2"
Filter assets based on vulnerability severity levels. Accepts a comma-separated list of severity levels.
CRITICAL
, HIGH
, MEDIUM
, LOW
"CRITICAL,HIGH"
Filter assets based on exposed secrets severity levels. Accepts a comma-separated list of severity levels.
CRITICAL
, HIGH
, MEDIUM
, LOW
"CRITICAL,HIGH"
Filter assets based on provider resource types. Accepts a comma-separated list of resource types.
"AWS::S3::Bucket,AWS::Lambda::Function"
Filter assets based on provider. Accepts a comma-separated list of providers.
AWS
, Azure
, GCP
, Kubernetes
"AWS,GCP"
Filter assets based on cloud provider services. Accepts a comma-separated list of service names. Each service can be specified either by its name alone (e.g., S3
, Lambda
, EC2
) or prefixed with its provider in the format Provider::Service
(e.g., AWS::S3
, GCP::Compute
, Azure::VirtualMachine
).
"AWS::S3,GCP::Compute,Azure::VirtualMachine"
Start of the date range for filtering assets based on the first observed time.
Specify the start of the range using a valid ISO 8601 date-time string.
If firstObservedAtStart
is provided and firstObservedAtEnd
is omitted,
results will include assets from this date to the present.
Supported formats include:
yyyy-MM-ddTHH:mm:ssZ
(e.g., 2020-12-18T08:00:00Z
)yyyy-MM-ddTHH:mm:ss.SSSZ
(e.g., 2020-12-18T08:00:00.000Z
)"2023-02-01T18:09:07Z"
End of the date range for filtering assets based on the first observed time.
Specify the end of the range using a valid ISO 8601 date-time string.
If firstObservedAtEnd
is provided and firstObservedAtStart
is omitted,
results will include assets up to this date.
Supported formats include:
yyyy-MM-ddTHH:mm:ssZ
(e.g., 2020-12-18T08:00:00Z
)yyyy-MM-ddTHH:mm:ss.SSSZ
(e.g., 2020-12-18T08:00:00.000Z
)"2023-02-01T18:09:07Z"
Filter assets based on whether the asset has Admin Privileges. The supported values are true
or false
true
Filter assets based on whether the asset has Overly Permissive Privileges. The supported values are true
or false
true
Filter assets based on whether the asset is susceptible to privilege escalation. The supported values are true
or false
true
Filter assets based on whether the asset has any unresolved vulnerability that is found on the CISA's Known Exploited Vulnerabilities Catalog. The supported values are true
or false
true
Filter assets based on whether the asset has any unresolved vulnerability that is referenced on the MITRE Exploit-DB reference map. The supported values are true
or false
true
Filter assets based on whether the asset has any unresolved vulnerability that has a CVSS v3 exploitability score greater than 1. The supported values are true
or false
true
Filter assets based on whether the asset is Publicly Accessible. The supported values are true
or false
true
Filter assets based on whether the asset has any unresolved vulnerability regardless of severity, source, or status. The supported values are true
or false
true
Filter assets based on the Asset's name matching the provided value
"test-asset-name"
Filter assets based on the asset's metadata matching the provided value. The search performs a case-insensitive substring match against all metadata keys and values, including nested fields.
"t2.micro"
Filter assets based on the risk score calculated by Plerion for the asset. The supported values are numbers from 0 to 10.
5
Order the list by supported field
id
, executionId
, integrationId
, resourceType
, service
, region
, name
, provider
, firstObservedAt
, lastObservedAt
, riskScore
, vulnerabilityScore
, numberOfLowVulnerabilities
, numberOfMediumVulnerabilities
, numberOfHighVulnerabilities
, numberOfCriticalVulnerabilities
"executionId"
The sort order of the list. The parameter sortBy has to be provided to use sortOrder. If sortOrder is not provided the default order is ASC
ASC
, DESC
"ASC"
Get the next batch of assets. Used for pagination
x >= 1
2
Specify the batch size of the list. Used for pagination
x <= 1000
100
Assets list
The response is of type object
.