curl --request POST \
--url https://api.wirespeed.com/endpoint/hva/automation \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"size": 123,
"page": 123,
"filter": "<string>",
"search": "<string>",
"orderBy": "<string>",
"orderDir": "asc"
}'
{
"totalCount": 123,
"data": [
{
"id": "<string>",
"teamId": "<string>",
"enabled": true,
"searchField": "name",
"search": "<string>"
}
]
}
Retrieve a paginated list of High Value Asset automation rules for the current team
curl --request POST \
--url https://api.wirespeed.com/endpoint/hva/automation \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"size": 123,
"page": 123,
"filter": "<string>",
"search": "<string>",
"orderBy": "<string>",
"orderDir": "asc"
}'
{
"totalCount": 123,
"data": [
{
"id": "<string>",
"teamId": "<string>",
"enabled": true,
"searchField": "name",
"search": "<string>"
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Paginated list of HVA automation rules
The response is of type object
.