PATCH alerts/targets
Enables or disables a list of alert targets.
Remarks
Use GET alerts/targets route to get the list of targets with their IDs and types.Returns HTTP 200 OK when successful.
Request example and description
curl --request PATCH "https://api-asm1.apica.io/v3/alerts/targets?auth_ticket=C471ADC4-19B4-4219-BBF4-671A97EC653E" --header "Content-Type: application/json" --data-raw "{
\"Enable\": true,
\"Targets\": [
{
\"TargetId\": 1,
\"TargetType\": 0
},
{
\"TargetId\": 1,
\"TargetType\": 0
},
{
\"TargetId\": 1,
\"TargetType\": 0
}
]
}"
Response body model example and description
{}