| Field | Operator | Value Type | Example / Allowed Values |
|---|---|---|---|
id |
in |
Array of integers | [123, 456, 789] |
external_id |
in |
Array of strings | ["abc-12345-def", "ext-67890"] |
detection.method |
in |
Array of strings | ["XDR Agent", "XDR Analytics", "PAN NGFW", "XDR BIOC", "XDR IOC", "Threat Intelligence", "Correlation", "Prisma Cloud", "Prisma Cloud Compute", "ASM", "IoT Security", "Custom Issue", "Health", "Attack Path", "Posture Policy", "CSPM Scanner", "CAS CVE Scanner", "CAS Drift Scanner", "IaC Scanner", "CAS Secret Scanner", "CI/CD Risks", "CLI Scanner", "CIEM Scanner", "Agentless Disk Scanner", "Kubernetes Scanner", "Compute Policy", "Secrets Scanner", "SAST Scanner", "Data Policy", "Vulnerability Policy", "AI Security Posture", "DLP", "Graph Engine", "API Traffic Monitor", "API Posture Scanner"] |
issue_domain |
in |
Array of strings | Default domains: ["Security", "Health", "Hunting", "IT", "Posture"]. Custom domains may also be configured per tenant. |
severity |
in |
Array of strings | Allowed: ["INFO", "LOW", "MEDIUM", "HIGH", "CRITICAL"] |
_insert_time |
gte, lte |
Integer (epoch ms) | 1700000000000 |
last_modified |
gte, lte |
Integer (epoch ms) | 1700000000000 |
observation_time |
gte, lte |
Integer (epoch ms) | 1700000000000 |
status.progress |
in |
Array of strings | Allowed: ["New", "In Progress", "Resolved"] |
assigned_to |
in |
Array of strings | Email addresses, e.g. ["alice@example.com"] |
assigned_to_pretty |
in |
Array of strings | Display names, e.g. ["Alice Smith"] |
Required license: Cortex XSIAM Premium or Cortex XSIAM Enterprise or Cortex XSIAM NG SIEM or Cortex XSIAM Enterprise Plus.
Authorization
String
required
{api_key}
{api_key}
authorization_example
x-xdr-auth-id
String
required
{api_key_id}
{api_key_id}
xXdrAuthId_example
curl -X 'POST'
-H
'Accept: application/json'
-H
'Content-Type: application/json'
-H
'Authorization: authorization_example'
-H
'x-xdr-auth-id: xXdrAuthId_example'
'https://api-yourfqdn/public_api/v1/issue/search'
-d
''
import http.client
conn = http.client.HTTPSConnection("api-yourfqdn")
payload = "{\"request_data\":{\"filters\":[{\"field\":\"id\",\"operator\":\"in\",\"value\":[0]}],\"search_from\":0,\"search_to\":100,\"sort\":{\"field\":\"id\",\"keyword\":\"asc\"},\"include_fields\":[]}}"
headers = {
'Authorization': "SOME_STRING_VALUE",
'x-xdr-auth-id': "SOME_STRING_VALUE",
'content-type': "application/json"
}
conn.request("POST", "/public_api/v1/issue/search", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))require 'uri'
require 'net/http'
require 'openssl'
url = URI("https://api-yourfqdn/public_api/v1/issue/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'SOME_STRING_VALUE'
request["x-xdr-auth-id"] = 'SOME_STRING_VALUE'
request["content-type"] = 'application/json'
request.body = "{\"request_data\":{\"filters\":[{\"field\":\"id\",\"operator\":\"in\",\"value\":[0]}],\"search_from\":0,\"search_to\":100,\"sort\":{\"field\":\"id\",\"keyword\":\"asc\"},\"include_fields\":[]}}"
response = http.request(request)
puts response.read_bodyconst data = JSON.stringify({
"request_data": {
"filters": [
{
"field": "id",
"operator": "in",
"value": [
0
]
}
],
"search_from": 0,
"search_to": 100,
"sort": {
"field": "id",
"keyword": "asc"
},
"include_fields": []
}
});
const xhr = new XMLHttpRequest();
xhr.withCredentials = true;
xhr.addEventListener("readystatechange", function () {
if (this.readyState === this.DONE) {
console.log(this.responseText);
}
});
xhr.open("POST", "https://api-yourfqdn/public_api/v1/issue/search");
xhr.setRequestHeader("Authorization", "SOME_STRING_VALUE");
xhr.setRequestHeader("x-xdr-auth-id", "SOME_STRING_VALUE");
xhr.setRequestHeader("content-type", "application/json");
xhr.send(data);HttpResponse<String> response = Unirest.post("https://api-yourfqdn/public_api/v1/issue/search")
.header("Authorization", "SOME_STRING_VALUE")
.header("x-xdr-auth-id", "SOME_STRING_VALUE")
.header("content-type", "application/json")
.body("{\"request_data\":{\"filters\":[{\"field\":\"id\",\"operator\":\"in\",\"value\":[0]}],\"search_from\":0,\"search_to\":100,\"sort\":{\"field\":\"id\",\"keyword\":\"asc\"},\"include_fields\":[]}}")
.asString();import Foundation
let headers = [
"Authorization": "SOME_STRING_VALUE",
"x-xdr-auth-id": "SOME_STRING_VALUE",
"content-type": "application/json"
]
let parameters = ["request_data": [
"filters": [
[
"field": "id",
"operator": "in",
"value": [0]
]
],
"search_from": 0,
"search_to": 100,
"sort": [
"field": "id",
"keyword": "asc"
],
"include_fields": []
]] as [String : Any]
let postData = JSONSerialization.data(withJSONObject: parameters, options: [])
let request = NSMutableURLRequest(url: NSURL(string: "https://api-yourfqdn/public_api/v1/issue/search")! as URL,
cachePolicy: .useProtocolCachePolicy,
timeoutInterval: 10.0)
request.httpMethod = "POST"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data
let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
if (error != nil) {
print(error)
} else {
let httpResponse = response as? HTTPURLResponse
print(httpResponse)
}
})
dataTask.resume()<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api-yourfqdn/public_api/v1/issue/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => "{\"request_data\":{\"filters\":[{\"field\":\"id\",\"operator\":\"in\",\"value\":[0]}],\"search_from\":0,\"search_to\":100,\"sort\":{\"field\":\"id\",\"keyword\":\"asc\"},\"include_fields\":[]}}",
CURLOPT_HTTPHEADER => [
"Authorization: SOME_STRING_VALUE",
"content-type: application/json",
"x-xdr-auth-id: SOME_STRING_VALUE"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}CURL *hnd = curl_easy_init();
curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "POST");
curl_easy_setopt(hnd, CURLOPT_URL, "https://api-yourfqdn/public_api/v1/issue/search");
struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "Authorization: SOME_STRING_VALUE");
headers = curl_slist_append(headers, "x-xdr-auth-id: SOME_STRING_VALUE");
headers = curl_slist_append(headers, "content-type: application/json");
curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);
curl_easy_setopt(hnd, CURLOPT_POSTFIELDS, "{\"request_data\":{\"filters\":[{\"field\":\"id\",\"operator\":\"in\",\"value\":[0]}],\"search_from\":0,\"search_to\":100,\"sort\":{\"field\":\"id\",\"keyword\":\"asc\"},\"include_fields\":[]}}");
CURLcode ret = curl_easy_perform(hnd);var client = new RestClient("https://api-yourfqdn/public_api/v1/issue/search");
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "SOME_STRING_VALUE");
request.AddHeader("x-xdr-auth-id", "SOME_STRING_VALUE");
request.AddHeader("content-type", "application/json");
request.AddParameter("application/json", "{\"request_data\":{\"filters\":[{\"field\":\"id\",\"operator\":\"in\",\"value\":[0]}],\"search_from\":0,\"search_to\":100,\"sort\":{\"field\":\"id\",\"keyword\":\"asc\"},\"include_fields\":[]}}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);request_dataobject
filtersarray
fieldstring (Enum)Specifies the field to filter issues by. See the endpoint description above for allowed values per field.
Specifies the field to filter issues by. See the endpoint description above for allowed values per field.
operatorstring (Enum)Comparison operator to use with the filter. Note: gte and lte are only valid for time-based fields (_insert_time, last_modified, observation_time). All other fields support in.
Comparison operator to use with the filter. Note: gte and lte are only valid for time-based fields (_insert_time, last_modified, observation_time). All other fields support in.
valueobjectValue(s) for filtering the issues. Allowed values depend on the selected field:
- severity:
INFO, LOW, MEDIUM, HIGH, CRITICAL
- status.progress:
New, In Progress, Resolved
- issue_domain:
Security, Health, Hunting, IT, Posture (custom domains may also be configured)
- detection.method:
XDR Agent, XDR Analytics, PAN NGFW, XDR BIOC, XDR IOC, Threat Intelligence, XDR Managed Threat Hunting, XDR Analytics BIOC, Correlation, Prisma Cloud, Prisma Cloud Compute, ASM, IoT Security, Custom Issue, Health, SaaS Attachments, Attack Path, Posture Policy, CAS Drift Scanner, Cloud Network Analyzer, IaC Scanner, CAS Secret Scanner, CI/CD Risks, CLI Scanner, CIEM Scanner, API Traffic Monitor, API Posture Scanner, Agentless Disk Scanner, Kubernetes Scanner, Compute Policy, CSPM Scanner, CAS CVE Scanner, CAS License Scanner, Secrets Scanner, SAST Scanner, Data Policy, Package Operational Risk, Vulnerability Policy, AI Security Posture, DLP, MIRRORING, AURL, User Reported Phishing, Graph Engine
- category:
CONFIGURATION, VULNERABILITY, MALWARE, IDENTITY, NETWORK, DATA_LOSS, COMPLIANCE, RUNTIME, SECRETS, IAC, CI_CD_RISKS, DRIFT, API_SECURITY, POSTURE, COMPUTE, LICENSE, OPERATIONAL_RISK, AI_SECURITY
- asset_classes:
Compute, Data, Network, Identity, Security, Management, Application, Other
- asset_categories:
Storage Bucket, Virtual Machine, Database Instance, Container, Serverless Function, Load Balancer, Firewall, VPN Gateway, IAM Role, IAM User, IAM Group, IAM Policy, Service Account, Kubernetes Cluster, Kubernetes Pod, Kubernetes Node, Network Interface, Subnet, VPC, Security Group, DNS Zone, Certificate, Key Vault, Disk, Snapshot, Image, Queue, Topic, API Gateway, CDN, Other
- asset_providers:
AWS, Azure, GCP, Oracle Cloud, IBM Cloud, Alibaba Cloud, Other
- _insert_time, last_modified, observation_time: Epoch timestamp in milliseconds (integer)
- id: Integer issue ID
- external_id, detection.rule_id, assigned_to, assigned_to_pretty, asset_ids, asset_names, asset_accounts, asset_regions, asset_types, asset_group_ids, asset_external_provider_ids, asset_cloud_account_names: Free-text string values
Value(s) for filtering the issues. Allowed values depend on the selected field:
- severity:
INFO,LOW,MEDIUM,HIGH,CRITICAL - status.progress:
New,In Progress,Resolved - issue_domain:
Security,Health,Hunting,IT,Posture(custom domains may also be configured) - detection.method:
XDR Agent,XDR Analytics,PAN NGFW,XDR BIOC,XDR IOC,Threat Intelligence,XDR Managed Threat Hunting,XDR Analytics BIOC,Correlation,Prisma Cloud,Prisma Cloud Compute,ASM,IoT Security,Custom Issue,Health,SaaS Attachments,Attack Path,Posture Policy,CAS Drift Scanner,Cloud Network Analyzer,IaC Scanner,CAS Secret Scanner,CI/CD Risks,CLI Scanner,CIEM Scanner,API Traffic Monitor,API Posture Scanner,Agentless Disk Scanner,Kubernetes Scanner,Compute Policy,CSPM Scanner,CAS CVE Scanner,CAS License Scanner,Secrets Scanner,SAST Scanner,Data Policy,Package Operational Risk,Vulnerability Policy,AI Security Posture,DLP,MIRRORING,AURL,User Reported Phishing,Graph Engine - category:
CONFIGURATION,VULNERABILITY,MALWARE,IDENTITY,NETWORK,DATA_LOSS,COMPLIANCE,RUNTIME,SECRETS,IAC,CI_CD_RISKS,DRIFT,API_SECURITY,POSTURE,COMPUTE,LICENSE,OPERATIONAL_RISK,AI_SECURITY - asset_classes:
Compute,Data,Network,Identity,Security,Management,Application,Other - asset_categories:
Storage Bucket,Virtual Machine,Database Instance,Container,Serverless Function,Load Balancer,Firewall,VPN Gateway,IAM Role,IAM User,IAM Group,IAM Policy,Service Account,Kubernetes Cluster,Kubernetes Pod,Kubernetes Node,Network Interface,Subnet,VPC,Security Group,DNS Zone,Certificate,Key Vault,Disk,Snapshot,Image,Queue,Topic,API Gateway,CDN,Other - asset_providers:
AWS,Azure,GCP,Oracle Cloud,IBM Cloud,Alibaba Cloud,Other - _insert_time, last_modified, observation_time: Epoch timestamp in milliseconds (integer)
- id: Integer issue ID
- external_id, detection.rule_id, assigned_to, assigned_to_pretty, asset_ids, asset_names, asset_accounts, asset_regions, asset_types, asset_group_ids, asset_external_provider_ids, asset_cloud_account_names: Free-text string values
integerValue(s) for filtering the issues. Allowed values depend on the selected field:
- severity:
INFO, LOW, MEDIUM, HIGH, CRITICAL
- status.progress:
New, In Progress, Resolved
- issue_domain:
Security, Health, Hunting, IT, Posture (custom domains may also be configured)
- detection.method:
XDR Agent, XDR Analytics, PAN NGFW, XDR BIOC, XDR IOC, Threat Intelligence, XDR Managed Threat Hunting, XDR Analytics BIOC, Correlation, Prisma Cloud, Prisma Cloud Compute, ASM, IoT Security, Custom Issue, Health, SaaS Attachments, Attack Path, Posture Policy, CAS Drift Scanner, Cloud Network Analyzer, IaC Scanner, CAS Secret Scanner, CI/CD Risks, CLI Scanner, CIEM Scanner, API Traffic Monitor, API Posture Scanner, Agentless Disk Scanner, Kubernetes Scanner, Compute Policy, CSPM Scanner, CAS CVE Scanner, CAS License Scanner, Secrets Scanner, SAST Scanner, Data Policy, Package Operational Risk, Vulnerability Policy, AI Security Posture, DLP, MIRRORING, AURL, User Reported Phishing, Graph Engine
- category:
CONFIGURATION, VULNERABILITY, MALWARE, IDENTITY, NETWORK, DATA_LOSS, COMPLIANCE, RUNTIME, SECRETS, IAC, CI_CD_RISKS, DRIFT, API_SECURITY, POSTURE, COMPUTE, LICENSE, OPERATIONAL_RISK, AI_SECURITY
- asset_classes:
Compute, Data, Network, Identity, Security, Management, Application, Other
- asset_categories:
Storage Bucket, Virtual Machine, Database Instance, Container, Serverless Function, Load Balancer, Firewall, VPN Gateway, IAM Role, IAM User, IAM Group, IAM Policy, Service Account, Kubernetes Cluster, Kubernetes Pod, Kubernetes Node, Network Interface, Subnet, VPC, Security Group, DNS Zone, Certificate, Key Vault, Disk, Snapshot, Image, Queue, Topic, API Gateway, CDN, Other
- asset_providers:
AWS, Azure, GCP, Oracle Cloud, IBM Cloud, Alibaba Cloud, Other
- _insert_time, last_modified, observation_time: Epoch timestamp in milliseconds (integer)
- id: Integer issue ID
- external_id, detection.rule_id, assigned_to, assigned_to_pretty, asset_ids, asset_names, asset_accounts, asset_regions, asset_types, asset_group_ids, asset_external_provider_ids, asset_cloud_account_names: Free-text string values
Value(s) for filtering the issues. Allowed values depend on the selected field:
- severity:
INFO,LOW,MEDIUM,HIGH,CRITICAL - status.progress:
New,In Progress,Resolved - issue_domain:
Security,Health,Hunting,IT,Posture(custom domains may also be configured) - detection.method:
XDR Agent,XDR Analytics,PAN NGFW,XDR BIOC,XDR IOC,Threat Intelligence,XDR Managed Threat Hunting,XDR Analytics BIOC,Correlation,Prisma Cloud,Prisma Cloud Compute,ASM,IoT Security,Custom Issue,Health,SaaS Attachments,Attack Path,Posture Policy,CAS Drift Scanner,Cloud Network Analyzer,IaC Scanner,CAS Secret Scanner,CI/CD Risks,CLI Scanner,CIEM Scanner,API Traffic Monitor,API Posture Scanner,Agentless Disk Scanner,Kubernetes Scanner,Compute Policy,CSPM Scanner,CAS CVE Scanner,CAS License Scanner,Secrets Scanner,SAST Scanner,Data Policy,Package Operational Risk,Vulnerability Policy,AI Security Posture,DLP,MIRRORING,AURL,User Reported Phishing,Graph Engine - category:
CONFIGURATION,VULNERABILITY,MALWARE,IDENTITY,NETWORK,DATA_LOSS,COMPLIANCE,RUNTIME,SECRETS,IAC,CI_CD_RISKS,DRIFT,API_SECURITY,POSTURE,COMPUTE,LICENSE,OPERATIONAL_RISK,AI_SECURITY - asset_classes:
Compute,Data,Network,Identity,Security,Management,Application,Other - asset_categories:
Storage Bucket,Virtual Machine,Database Instance,Container,Serverless Function,Load Balancer,Firewall,VPN Gateway,IAM Role,IAM User,IAM Group,IAM Policy,Service Account,Kubernetes Cluster,Kubernetes Pod,Kubernetes Node,Network Interface,Subnet,VPC,Security Group,DNS Zone,Certificate,Key Vault,Disk,Snapshot,Image,Queue,Topic,API Gateway,CDN,Other - asset_providers:
AWS,Azure,GCP,Oracle Cloud,IBM Cloud,Alibaba Cloud,Other - _insert_time, last_modified, observation_time: Epoch timestamp in milliseconds (integer)
- id: Integer issue ID
- external_id, detection.rule_id, assigned_to, assigned_to_pretty, asset_ids, asset_names, asset_accounts, asset_regions, asset_types, asset_group_ids, asset_external_provider_ids, asset_cloud_account_names: Free-text string values
stringValue(s) for filtering the issues. Allowed values depend on the selected field:
- severity:
INFO, LOW, MEDIUM, HIGH, CRITICAL
- status.progress:
New, In Progress, Resolved
- issue_domain:
Security, Health, Hunting, IT, Posture (custom domains may also be configured)
- detection.method:
XDR Agent, XDR Analytics, PAN NGFW, XDR BIOC, XDR IOC, Threat Intelligence, XDR Managed Threat Hunting, XDR Analytics BIOC, Correlation, Prisma Cloud, Prisma Cloud Compute, ASM, IoT Security, Custom Issue, Health, SaaS Attachments, Attack Path, Posture Policy, CAS Drift Scanner, Cloud Network Analyzer, IaC Scanner, CAS Secret Scanner, CI/CD Risks, CLI Scanner, CIEM Scanner, API Traffic Monitor, API Posture Scanner, Agentless Disk Scanner, Kubernetes Scanner, Compute Policy, CSPM Scanner, CAS CVE Scanner, CAS License Scanner, Secrets Scanner, SAST Scanner, Data Policy, Package Operational Risk, Vulnerability Policy, AI Security Posture, DLP, MIRRORING, AURL, User Reported Phishing, Graph Engine
- category:
CONFIGURATION, VULNERABILITY, MALWARE, IDENTITY, NETWORK, DATA_LOSS, COMPLIANCE, RUNTIME, SECRETS, IAC, CI_CD_RISKS, DRIFT, API_SECURITY, POSTURE, COMPUTE, LICENSE, OPERATIONAL_RISK, AI_SECURITY
- asset_classes:
Compute, Data, Network, Identity, Security, Management, Application, Other
- asset_categories:
Storage Bucket, Virtual Machine, Database Instance, Container, Serverless Function, Load Balancer, Firewall, VPN Gateway, IAM Role, IAM User, IAM Group, IAM Policy, Service Account, Kubernetes Cluster, Kubernetes Pod, Kubernetes Node, Network Interface, Subnet, VPC, Security Group, DNS Zone, Certificate, Key Vault, Disk, Snapshot, Image, Queue, Topic, API Gateway, CDN, Other
- asset_providers:
AWS, Azure, GCP, Oracle Cloud, IBM Cloud, Alibaba Cloud, Other
- _insert_time, last_modified, observation_time: Epoch timestamp in milliseconds (integer)
- id: Integer issue ID
- external_id, detection.rule_id, assigned_to, assigned_to_pretty, asset_ids, asset_names, asset_accounts, asset_regions, asset_types, asset_group_ids, asset_external_provider_ids, asset_cloud_account_names: Free-text string values
Value(s) for filtering the issues. Allowed values depend on the selected field:
- severity:
INFO,LOW,MEDIUM,HIGH,CRITICAL - status.progress:
New,In Progress,Resolved - issue_domain:
Security,Health,Hunting,IT,Posture(custom domains may also be configured) - detection.method:
XDR Agent,XDR Analytics,PAN NGFW,XDR BIOC,XDR IOC,Threat Intelligence,XDR Managed Threat Hunting,XDR Analytics BIOC,Correlation,Prisma Cloud,Prisma Cloud Compute,ASM,IoT Security,Custom Issue,Health,SaaS Attachments,Attack Path,Posture Policy,CAS Drift Scanner,Cloud Network Analyzer,IaC Scanner,CAS Secret Scanner,CI/CD Risks,CLI Scanner,CIEM Scanner,API Traffic Monitor,API Posture Scanner,Agentless Disk Scanner,Kubernetes Scanner,Compute Policy,CSPM Scanner,CAS CVE Scanner,CAS License Scanner,Secrets Scanner,SAST Scanner,Data Policy,Package Operational Risk,Vulnerability Policy,AI Security Posture,DLP,MIRRORING,AURL,User Reported Phishing,Graph Engine - category:
CONFIGURATION,VULNERABILITY,MALWARE,IDENTITY,NETWORK,DATA_LOSS,COMPLIANCE,RUNTIME,SECRETS,IAC,CI_CD_RISKS,DRIFT,API_SECURITY,POSTURE,COMPUTE,LICENSE,OPERATIONAL_RISK,AI_SECURITY - asset_classes:
Compute,Data,Network,Identity,Security,Management,Application,Other - asset_categories:
Storage Bucket,Virtual Machine,Database Instance,Container,Serverless Function,Load Balancer,Firewall,VPN Gateway,IAM Role,IAM User,IAM Group,IAM Policy,Service Account,Kubernetes Cluster,Kubernetes Pod,Kubernetes Node,Network Interface,Subnet,VPC,Security Group,DNS Zone,Certificate,Key Vault,Disk,Snapshot,Image,Queue,Topic,API Gateway,CDN,Other - asset_providers:
AWS,Azure,GCP,Oracle Cloud,IBM Cloud,Alibaba Cloud,Other - _insert_time, last_modified, observation_time: Epoch timestamp in milliseconds (integer)
- id: Integer issue ID
- external_id, detection.rule_id, assigned_to, assigned_to_pretty, asset_ids, asset_names, asset_accounts, asset_regions, asset_types, asset_group_ids, asset_external_provider_ids, asset_cloud_account_names: Free-text string values
search_fromintegerStarting index for pagination.
Starting index for pagination.
search_tointegerEnding index for pagination.
Ending index for pagination.
100sortobject
fieldstring (Enum)
keywordstring (Enum)Sort order (ascending or descending).
Sort order (ascending or descending).
include_fieldsarray[string]A list of fields to include in the response.
normalized_fields: Includes normalized fields in the response.
custom_fields: Includes custom user-defined fields in the response.
- By default these fields will not be part of response payload.
A list of fields to include in the response.
normalized_fields: Includes normalized fields in the response.custom_fields: Includes custom user-defined fields in the response.- By default these fields will not be part of response payload.
{
"request_data": {
"filters": [
{
"field": "severity",
"operator": "in",
"value": [
"HIGH",
"CRITICAL"
]
}
]
},
"search_from": 0,
"search_to": 50,
"sort": {
"field": "observation_time",
"keyword": "desc"
}
}{
"request_data": {
"filters": [
{
"field": "_insert_time",
"operator": "gte",
"value": 1700000000000
},
{
"field": "_insert_time",
"operator": "lte",
"value": 1700100000000
}
]
},
"search_from": 0,
"search_to": 100
}{
"request_data": {
"filters": [
{
"field": "status.progress",
"operator": "in",
"value": [
"New"
]
},
{
"field": "issue_domain",
"operator": "in",
"value": [
"Security"
]
}
]
},
"search_from": 0,
"search_to": 100,
"include_fields": [
"normalized_fields",
"custom_fields"
]
}{
"request_data": {
"filters": [
{
"field": "id",
"operator": "in",
"value": [
123,
456,
789
]
}
]
}
}{
"request_data": {
"filters": [
{
"field": "detection.method",
"operator": "in",
"value": [
"CSPM_SCANNER",
"CREATE_ALERT_PUBLIC_API"
]
}
]
},
"sort": {
"field": "severity",
"keyword": "desc"
}
}{
"request_data": {
"filters": [
{
"field": "asset_names",
"operator": "in",
"value": [
"my-server-01",
"my-database-prod"
]
},
{
"field": "asset_accounts",
"operator": "in",
"value": [
"883588134481"
]
}
]
}
}