google_api_script v0.0.1 API Reference
Modules
API calls for all endpoints tagged Scripts
Handle Tesla connections for GoogleApi.Script.V1
Helper functions for deserializing responses into models
An object that provides information about the nature of an error in the Apps Script Execution API. If an `run` call succeeds but the script function (or Apps Script itself) throws an exception, the response body's `error` field contains a `Status` object. The `Status` object's `details` field contains an array with a single one of these `ExecutionError` objects
A request to run the function in a script. The script is identified by the specified `script_id`. Executing a function on a script returns results based on the implementation of the script
An object that provides the return value of a function executed through the Apps Script Execution API. If a `run` call succeeds and the script function returns successfully, the response body's `response` field contains this `ExecutionResponse` object
The response will not arrive until the function finishes executing. The maximum runtime is listed in the guide to limitations in Apps Script. <p>If the script function returns successfully, the `response` field will contain an `ExecutionResponse` object with the function's return value in the object's `result` field.</p> <p>If the script function (or Apps Script itself) throws an exception, the `error` field will contain a `Status` object. The `Status` object's `details` field will contain an array with a single `ExecutionError` object that provides information about the nature of the error.</p> <p>If the `run` call itself fails (for example, because of a malformed request or an authorization error), the method will return an HTTP response code in the 4XX range with a different format for the response body. Client libraries will automatically convert a 4XX response into an exception class.</p>
A stack trace through the script that shows where the execution failed
If a `run` call succeeds but the script function (or Apps Script itself) throws an exception, the response body's `error` field will contain this `Status` object
Helper functions for building Tesla requests