PUT
/
endpoint
/
hva
/
automation
Create HVA automation rule
curl --request PUT \
  --url https://api.wirespeed.co/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>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
field
enum<string>
required

Field to apply HVA automation to

Available options:
name,
ip

Search pattern for HVA automation matching

Response

Created HVA automation rule

id
string
required

Unique identifier for the automation rule

teamId
string
required

ID of the team that owns this automation rule

enabled
boolean
required

Whether this automation rule is active

searchField
enum<string>
required

Field used for automation matching

Available options:
name,
ip

Search pattern used for automation matching