curl --request PATCH \
--url https://api.wirespeed.com/endpoint/hva/automation/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"enabled": true
}'
{
"id": "<string>",
"teamId": "<string>",
"enabled": true,
"searchField": "name",
"search": "<string>"
}
Enable or disable an existing HVA automation rule
curl --request PATCH \
--url https://api.wirespeed.com/endpoint/hva/automation/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"enabled": true
}'
{
"id": "<string>",
"teamId": "<string>",
"enabled": true,
"searchField": "name",
"search": "<string>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Unique identifier of the automation rule
Updated HVA automation rule
The response is of type object
.