Skip to content

Instantly share code, notes, and snippets.

View jhershauer's full-sized avatar

Jeff Hershauer jhershauer

  • Early Warning
  • Scottsdale, AZ
View GitHub Profile
@jhershauer
jhershauer / Code.gs
Created October 22, 2017 17:36
Call Ryver Webhook from Google Apps Script
function sendToRyver_(url,payload) {
var options = {
"method" : "post",
"contentType" : "application/json",
"payload" : JSON.stringify(payload)
};
return UrlFetchApp.fetch(url, options)
}
function callWebhook(e) {