cf_build_dashboard_url
Construct a deep link to the Cloudflare dashboard for a specified view type, account, and optional zone and filters. Use this to navigate directly to security events, WAF rules, analytics, or other Cloudflare services.
Instructions
Construct a deep link into the Cloudflare dashboard for a given view.
Args:
view_type: one of:
security_events, waf_custom_rules, rate_limiting_rules,
bot_management, analytics_traffic, logpush,
access_apps, gateway_rules.
account_id: Cloudflare account ID. Required for all views. Falls back
to CF_ACCOUNT_ID env var when not supplied.
zone: zone name or zone ID for zone-scoped views (e.g. "example.com").
filters: optional `?key=value` query-string overrides (e.g.
`{"action": "block"}` on security_events).
Returns: envelope with `data = {url, view_type, account_id, zone}`.
Errors:
validation when view_type is unknown, account_id is missing, or a
zone-scoped view was called without a zone.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| view_type | Yes | ||
| account_id | No | ||
| zone | No | ||
| filters | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |