├── .gitignore ├── LICENSE ├── README.md ├── flow-pagination ├── README.md ├── index.js └── package.json ├── get-active-alarms-by-specific-box ├── README.md ├── index.js └── package.json ├── get-offline-devices ├── README.md ├── index.js └── package.json ├── get-rules-with-conditions ├── README.md ├── index.js └── package.json ├── get-top-bandwidth-usage-devices ├── README.md ├── index.js └── package.json ├── pause-an-existing-rule ├── README.md ├── index.js └── package.json ├── send-alarms-to-discord ├── README.md ├── index.js └── package.json ├── target-list-from-gaming-alarm-ips ├── README.md ├── create-target-list │ ├── index.js │ └── package.json └── update-target-list │ ├── index.js │ └── package.json ├── target-list-with-cloudflare ├── README.md ├── cf-real-ip-example.conf ├── create-target-list.sh └── update-target-list.sh └── target-list-with-crowdsec ├── README.md ├── create-target-list.sh └── update-target-list.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/README.md -------------------------------------------------------------------------------- /flow-pagination/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/flow-pagination/README.md -------------------------------------------------------------------------------- /flow-pagination/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/flow-pagination/index.js -------------------------------------------------------------------------------- /flow-pagination/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/flow-pagination/package.json -------------------------------------------------------------------------------- /get-active-alarms-by-specific-box/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/get-active-alarms-by-specific-box/README.md -------------------------------------------------------------------------------- /get-active-alarms-by-specific-box/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/get-active-alarms-by-specific-box/index.js -------------------------------------------------------------------------------- /get-active-alarms-by-specific-box/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/get-active-alarms-by-specific-box/package.json -------------------------------------------------------------------------------- /get-offline-devices/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/get-offline-devices/README.md -------------------------------------------------------------------------------- /get-offline-devices/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/get-offline-devices/index.js -------------------------------------------------------------------------------- /get-offline-devices/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/get-offline-devices/package.json -------------------------------------------------------------------------------- /get-rules-with-conditions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/get-rules-with-conditions/README.md -------------------------------------------------------------------------------- /get-rules-with-conditions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/get-rules-with-conditions/index.js -------------------------------------------------------------------------------- /get-rules-with-conditions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/get-rules-with-conditions/package.json -------------------------------------------------------------------------------- /get-top-bandwidth-usage-devices/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/get-top-bandwidth-usage-devices/README.md -------------------------------------------------------------------------------- /get-top-bandwidth-usage-devices/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/get-top-bandwidth-usage-devices/index.js -------------------------------------------------------------------------------- /get-top-bandwidth-usage-devices/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/get-top-bandwidth-usage-devices/package.json -------------------------------------------------------------------------------- /pause-an-existing-rule/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/pause-an-existing-rule/README.md -------------------------------------------------------------------------------- /pause-an-existing-rule/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/pause-an-existing-rule/index.js -------------------------------------------------------------------------------- /pause-an-existing-rule/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/pause-an-existing-rule/package.json -------------------------------------------------------------------------------- /send-alarms-to-discord/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/send-alarms-to-discord/README.md -------------------------------------------------------------------------------- /send-alarms-to-discord/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/send-alarms-to-discord/index.js -------------------------------------------------------------------------------- /send-alarms-to-discord/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/send-alarms-to-discord/package.json -------------------------------------------------------------------------------- /target-list-from-gaming-alarm-ips/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/target-list-from-gaming-alarm-ips/README.md -------------------------------------------------------------------------------- /target-list-from-gaming-alarm-ips/create-target-list/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/target-list-from-gaming-alarm-ips/create-target-list/index.js -------------------------------------------------------------------------------- /target-list-from-gaming-alarm-ips/create-target-list/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/target-list-from-gaming-alarm-ips/create-target-list/package.json -------------------------------------------------------------------------------- /target-list-from-gaming-alarm-ips/update-target-list/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/target-list-from-gaming-alarm-ips/update-target-list/index.js -------------------------------------------------------------------------------- /target-list-from-gaming-alarm-ips/update-target-list/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/target-list-from-gaming-alarm-ips/update-target-list/package.json -------------------------------------------------------------------------------- /target-list-with-cloudflare/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/target-list-with-cloudflare/README.md -------------------------------------------------------------------------------- /target-list-with-cloudflare/cf-real-ip-example.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/target-list-with-cloudflare/cf-real-ip-example.conf -------------------------------------------------------------------------------- /target-list-with-cloudflare/create-target-list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/target-list-with-cloudflare/create-target-list.sh -------------------------------------------------------------------------------- /target-list-with-cloudflare/update-target-list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/target-list-with-cloudflare/update-target-list.sh -------------------------------------------------------------------------------- /target-list-with-crowdsec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/target-list-with-crowdsec/README.md -------------------------------------------------------------------------------- /target-list-with-crowdsec/create-target-list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/target-list-with-crowdsec/create-target-list.sh -------------------------------------------------------------------------------- /target-list-with-crowdsec/update-target-list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firewalla/msp-api-examples/HEAD/target-list-with-crowdsec/update-target-list.sh --------------------------------------------------------------------------------