├── Apache-Script-Runner ├── WebhookScript.sh └── script_runner.php ├── Email-on-Enroll-and-Un-Enroll ├── email_on_enroll_unenroll.py └── requirements.txt ├── HipChat-JSS-Upgrade-Notification ├── jss_upgraded_notification.py └── requirements.txt ├── HipChat-Patch-Notification ├── patch_notification.py └── requirements.txt ├── PHP-Webhook-Processing ├── JSSWebhook.php └── Usage.sample.php ├── README.md ├── Slack-REST-API-Change-Notification └── api_change_notification.rb └── images └── basic_webhook_integration_diagram.png /Apache-Script-Runner/WebhookScript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brysontyrrell/Example-JSS-Webhooks/HEAD/Apache-Script-Runner/WebhookScript.sh -------------------------------------------------------------------------------- /Apache-Script-Runner/script_runner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brysontyrrell/Example-JSS-Webhooks/HEAD/Apache-Script-Runner/script_runner.php -------------------------------------------------------------------------------- /Email-on-Enroll-and-Un-Enroll/email_on_enroll_unenroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brysontyrrell/Example-JSS-Webhooks/HEAD/Email-on-Enroll-and-Un-Enroll/email_on_enroll_unenroll.py -------------------------------------------------------------------------------- /Email-on-Enroll-and-Un-Enroll/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brysontyrrell/Example-JSS-Webhooks/HEAD/Email-on-Enroll-and-Un-Enroll/requirements.txt -------------------------------------------------------------------------------- /HipChat-JSS-Upgrade-Notification/jss_upgraded_notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brysontyrrell/Example-JSS-Webhooks/HEAD/HipChat-JSS-Upgrade-Notification/jss_upgraded_notification.py -------------------------------------------------------------------------------- /HipChat-JSS-Upgrade-Notification/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brysontyrrell/Example-JSS-Webhooks/HEAD/HipChat-JSS-Upgrade-Notification/requirements.txt -------------------------------------------------------------------------------- /HipChat-Patch-Notification/patch_notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brysontyrrell/Example-JSS-Webhooks/HEAD/HipChat-Patch-Notification/patch_notification.py -------------------------------------------------------------------------------- /HipChat-Patch-Notification/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==0.11.1 2 | requests==2.10.0 3 | -------------------------------------------------------------------------------- /PHP-Webhook-Processing/JSSWebhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brysontyrrell/Example-JSS-Webhooks/HEAD/PHP-Webhook-Processing/JSSWebhook.php -------------------------------------------------------------------------------- /PHP-Webhook-Processing/Usage.sample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brysontyrrell/Example-JSS-Webhooks/HEAD/PHP-Webhook-Processing/Usage.sample.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brysontyrrell/Example-JSS-Webhooks/HEAD/README.md -------------------------------------------------------------------------------- /Slack-REST-API-Change-Notification/api_change_notification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brysontyrrell/Example-JSS-Webhooks/HEAD/Slack-REST-API-Change-Notification/api_change_notification.rb -------------------------------------------------------------------------------- /images/basic_webhook_integration_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brysontyrrell/Example-JSS-Webhooks/HEAD/images/basic_webhook_integration_diagram.png --------------------------------------------------------------------------------