Posted by : Black Diamond

developers google appscript

e.queryString
The value of the query string portion of the URL, or null if no query string is specified
name=alice&n=1&n=2
e.parameter
An object of key/value pairs that correspond to the request parameters. Only the first value is returned for parameters that have multiple values.
{"name": "alice", "n": "1"}
e.parameters
An object similar to e.parameter, but with an array of values for each key
{"name": ["alice"], "n": ["1", "2"]}
e.contextPath Not used, always the empty string.
e.contentLength
The length of the request body for POST requests, or -1 for GET requests
332
e.postData.length
The same as e.contentLength
332
e.postData.type
The MIME type of the POST body
text/csv
e.postData.contents
The content text of the POST body
Alice,21
e.postData.name
Always the value "postData"
postData