-
-
Save anilahir/1e3f902eb4b46dcdd90bcfe89f837f4c to your computer and use it in GitHub Desktop.
Google Forms + Webhook : JSON example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var POST_URL = "http://localhost:3000"; | |
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(), | |
"timestamp": e.response.getTimestamp(), | |
"payload": e.response.getItemResponses().map(function(y) { | |
return { | |
h: y.getItem().getTitle(), | |
k: y.getResponse() | |
} | |
}, this).reduce(function(r, y) { | |
r[y.h] = y.k; | |
return r | |
}, {}), | |
}, | |
}; | |
var options = { | |
method: "post", | |
payload: JSON.stringify(data, null, 2), | |
contentType: "application/json; charset=utf-8", | |
}; | |
UrlFetchApp.fetch(POST_URL, options); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment