v3 API//
- Get information about specific alert from all triggered alerts for the account
Get summary for all triggered alerts for the account
Get all triggered alerts for the account
Get information about spe...
POST /v3/account-triggered-alerts/alerts/{alertId}
Security
API_Key
Filters
Should have from and/or to dates defined. from is inclusive and to is exclusive. to date should be after from date.
non-empty array of labels present on an item, works as "item has all specified labels" filter
POST
curl -i -X POST \
'https://api.observepoint.com/v3/account-triggered-alerts/alerts/{alertId}?page=0&size=50&sortBy=RUN_DATE&sortDesc=false' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"runDateRange": {
"from": "2016-08-18T17:33:00Z",
"to": "2016-08-18T17:33:00Z"
},
"itemName": "string",
"itemLabels": [
223
],
"itemType": "AUDIT",
"folders": [
{
"folderId": 123,
"domains": [
123
]
}
]
}'Response
{ "metadata": { "pagination": { … } }, "dataSources": [ { … } ] }