Skip to content

Instantly share code, notes, and snippets.

@typeetfunc
typeetfunc / webhook.gs
Created August 18, 2018 10:23 — forked from lifehome/webhook.gs
Google Forms + Webhook : JSON example
function onFormSubmit(e) {
var data = {
"form": {
"id": e.source.getId(),
"title": e.source.getTitle() ? e.source.getTitle() : "Untitled Form",
"is_private": e.source.requiresLogin(),
"is_published": e.source.isAcceptingResponses(),
},
"response": {
"id": e.response.getId(),