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
    }
  ]
}"
NameType Required Description
Enable Boolean No

No documentation available.

Targets Array No

No documentation available.

TargetId Integer No

No documentation available.

TargetType Object No

No documentation available.

value__ Integer No

No documentation available.

Response body model example and description

{}