InsightVM API Documentation update

I am trying to build a workflow in ICON to update an insightVM tag. I am attempting to search the assets based on a filter of host-name to find the asset ID to update a tag. It seems that the API(v3) documentation does not include all of the required properties for proper use. For instance, the API documentation at https://help.rapid7.com/insightvm/en-us/api/3/html#section/Overview/Responses make reference to field, operator and value, however when I run this I get an error that match and filter are bother required properties. These are not listed and the documentation provides no insight on how to properly proceed.

{
    "filters":[
        {
            "field":"host-name",
            "operator":"is",
            "value":"{{Hostname}}"
        }
    ],
    "match":"any"
}
1 Like