Clearswift Automation Work 〈Full Version〉

Automate one task this week – exporting the quarantine list or blocking a test domain via API – and build from there. Do you have a specific Clearswift automation task in mind? Ask below – scripts and examples welcome.

It’s time to talk about .

$headers = @ "Authorization" = "Bearer $YOUR_API_TOKEN" $body = @ "email" = "spammer@example.com"; "type" = "block" | ConvertTo-Json Invoke-RestMethod -Uri "https://your-clearswift-server/api/v1/blocklist" -Method POST -Headers $headers ` -Body $body Clearswift’s ICAP server allows network devices (proxies, email relays) to send content for scanning. You can automate the source of that traffic. clearswift automation