post
/public_api/v1/assets/tags/external_ip_address_ranges/remove
Remove tags in bulk from a set of IP address ranges.
CURL
curl -X POST \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
"https://api-yourfqdn/public_api/v1/assets/tags/external_ip_address_ranges/remove" \
-d '{
"request_data" : {
"filters" : [ {
"field" : "field",
"value" : [ "value", "value" ],
"operator" : "operator"
}, {
"field" : "field",
"value" : [ "value", "value" ],
"operator" : "operator"
} ],
"tag" : [ "tag", "tag" ]
}
}'
Request
Body
optional
Example:
{"request_data":{"filters":[{"field":"range_id_list","operator":"in","value":[""]}],"tags":[""]}}
request_data
required
A dictionary containing the API request fields.
An empty dictionary returns all results.
filters
optional
Array
field
optional
String
range_id_list: indicates that the set of IP ranges will be a list of IDs.
operator
optional
String
in
value
optional
Array
of strings
List of strings, the ip range IDs that should be removed from the tag.
tag
optional
Array
of strings
List of tag names to remove from the ranges. These do not need to include the tag family.
Responses