Running GAS-3.901.1730
Running Gas | |
|---|---|
Author: Taiki Shimasaki
Primary FeaturesThe Running GAS plugin allows your bots to execute Googles Apps Script directly. This allows the bots to integrate seamlessly with business processes at many enterprises where IT department has already prepared and deployed many Google Apps Scripts.
What can Apps Script do?
You can find more here https://developers.google.com/apps-script/overview
|
Input (Requirements)
URL --- Deployment URL of the Google Apps Script to be executed
Operation
doPost
doGet
Input (Optional)
Parameters --- For doPost operations, if Google Apps Script requires or takes parameters, you can set as many parameters here as possible
Parameters can be entered as plain text and it would be automatically converted to a JSON format
Ex.
When you have
param1
param2
param3
the JSON to be sent to the Google Apps Script would look like
{"data": ["param1", "param2", "param3"]}
Output – Return Value
The plugin returns either Success or Failure depending on what gets sent back to the Google Apps Script
String
CSV (Internal memory to PAM)
File (either .txt or .csv)
Parameter Setting Examples