v3 API//
- Update target items (data sources) that have specified Alert assigned
Create Alert
Get specific Alert by ID
Update specific Alert
Delete specific Alert
Update labels for an Alert
Get Alerts Library items
Get Alerts by metric
Search target items (data sources - audits, journeys etc) that may have specified Alert assigned or not assigned
Search Alerts for assigning them to other items (audits, WJs etc)
Update Alerts assigned to specified item (audit, journey etc)
Update target items (data...
PATCH /v3/alerts/{alertId}/target-items
Security
API_Key
PATCH
curl -i -X PATCH \
'https://api.observepoint.com/v3/alerts/{alertId}/target-items' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"assignmentUpdates": [
{
"scope": "SINGLE_ITEM",
"itemType": "AUDIT",
"itemId": 0,
"operation": "ASSIGN"
}
]
}'