v1
latestOpenAPI 3.0.02026-07-141,4077,1665.2 MBSecurity Monitoring
Get dataset dependencies
Return, for each of the requested datasets, the list of detection rules that depend on it. Useful for understanding the impact of updating or deleting a dataset.
post/api/v2/security_monitoring/datasets/dependencies
Request body
Example request
{
"data": {
"attributes": {
"datasetIds": [
"123e4567-e89b-12d3-a456-426614174000"
]
}
}
}Response
OK
Example response
{
"data": [
{
"attributes": {
"datasetId": "123e4567-e89b-12d3-a456-426614174000",
"ids": [],
"resource_type": "security_detection_rule"
},
"id": "123e4567-e89b-12d3-a456-426614174000",
"type": "datasetDependents"
}
]
}