Skip to content

Instantly share code, notes, and snippets.

@bcardiff
Created May 21, 2017 16:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bcardiff/bd3a4928f99640d0047783b04e59a55a to your computer and use it in GitHub Desktop.
Save bcardiff/bd3a4928f99640d0047783b04e59a55a to your computer and use it in GitHub Desktop.
Send eventbrite.com notifications to Slack via webscript.io
local action = json.parse(request.body).config.action
http.request {
url = 'https://hooks.slack.com/services/...',
method = 'POST',
data = json.stringify({text = 'Action: '..action})
}
return 200
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment