Focus
Focus
Table of Contents

Dynamic Reports

You can use the API to view a number of dynamic reports, such as
top-applications-summary
,
top-blocked-url-summary
, and
top-spyware-threats-summary
. For dynamic reports, provide either a specific period using the
period
or a time frame using
starttime
and
endtime
options (use a + instead of a space between the date and timestamp). Use
topn
to determine the number of rows.
Dynamic Report Type
API Request
Full dynamic report list.
curl -X POST 'https://firewall/api?type=report&reporttype=dynamic"
Last 60 seconds.
curl -X POST 'https://firewall/api?type=report&reporttype=dynamic&reportname=top-app-summary&period=last-60-seconds&topn=5"
Last 15 minutes.
curl -X POST 'https://firewall/api?type=report&reporttype=dynamic&reportname=top-app-summary&period=last-15-minutes&topn=5"
Last hour.
curl -X POST 'https://firewall/api?type=report&reporttype=dynamic&reportname=top-app-summary&period=last-hour&topn=5"
Last 12 hours.
curl -X POST 'https://firewall/api?type=report&reporttype=dynamic&reportname=top-app-summary&period=last-12-hrs&topn=5"
Last calendar day.
curl -X POST 'https://firewall/api?type=report&reporttype=dynamic&reportname=top-app-summary&period=last-calendar-day&topn=5"
Last 7 days
curl -X POST 'https://firewall/api?type=report&reporttype=dynamic&reportname=top-app-summary&period=last-7-days&topn=5"
Last 7 calendar days
curl -X POST 'https://firewall/api?type=report&reporttype=dynamic&reportname=top-app-summary&period=last-hour&topn=5"
Last calendar week.
curl -X POST 'https://firewall/api?type=report&reporttype=dynamic&reportname=top-app-summary&period=last-calendar-week&topn=5"
Last 30 days
curl -X POST 'https://firewall/api?type=report&reporttype=dynamic&reportname=top-app-summary&period=last-30-days&topn=5"

Recommended For You