curl --request PUT \
--url https://api.wirespeed.com/endpoint/hva/automation \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"field": "name",
"search": "<string>"
}'
{
"id": "<string>",
"teamId": "<string>",
"enabled": true,
"searchField": "name",
"search": "<string>"
}
Create an automation rule to automatically mark endpoints as High Value Assets based on specific criteria
curl --request PUT \
--url https://api.wirespeed.com/endpoint/hva/automation \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"field": "name",
"search": "<string>"
}'
{
"id": "<string>",
"teamId": "<string>",
"enabled": true,
"searchField": "name",
"search": "<string>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Created HVA automation rule
The response is of type object
.