Skip to end of metadata
Go to start of metadata


Running Gas



Author: Taiki Shimasaki


Primary Features

The 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?

  • Add custom menus, dialogs, and sidebars to Google Docs, Sheets, and Forms.
  • Write custom functions and macros for Google Sheets.
  • Publish web apps — either standalone or embedded in Google Sites.
  • Interact with other Google services, including AdSense, Analytics, Calendar, Drive, Gmail, and Maps.


You can find more here

https://developers.google.com/apps-script/overview


(info) 日本語でのマニュアルはこちらを御覧ください。



Need help?

Technical contact to tech@argos-labs.com


May you search all operations,



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)



(info) 日本語でのマニュアルはこちらを御覧ください。



Parameter Setting Examples



Text from Image



All Plugins