Blocklists
Update Blocklist
Update an existing blocklist. The GNQL query, name, IP limit, and enabled status can be changed.
put/v3/workspaces/{workspace_id}/blocklists/{blocklist_id}
Path parameters
workspace_idstring uuid required
Workspace UUID.
blocklist_idstring uuid required
Blocklist UUID.
Request body
Example request
{
"query": "classification:malicious last_seen:1d",
"name": "Malicious scanners (updated)",
"ip_limit": 500
}Response
OK - blocklist updated.
Example response
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"workspace_id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
"query": "classification:malicious last_seen:1d",
"name": "Malicious scanners",
"ip_limit": 1000,
"enabled": true,
"last_ip_count": 427
}