'Call a Google Sheets add-on within a Google Apps Script?

Is it possible to call a Google Sheets add-on as if it were a function in an Apps Script?

I am trying to automate a few steps like this:

  1. Import/append data from sheet 1 to main sheet 1
  2. Import/append data from sheet 2 to main sheet 2
  3. Merge values/append new values from main sheets 1 and 2 into main sheet 3

All of these steps are done with 2 add-ons. Ideally, I could call those add-on functions with a script and run the script with a button.

Is this possible?



Solution 1:[1]

Short answer

It's not possible.

Explanation

Google Apps Script official documentation doesn't include this on the Guides section, by the other hand, there aren't a documented way to call add-on functions other than the custom menus and the add-on dialogs, sidebars, custom functions and triggers, which should be part of the same project directly or of a installed library.

Solution 2:[2]

This is possible however all users have to have view permission to the underlining script file that you publish from.

I'm not sure this is bullet proof but to help limit the exposure of the code I've:

1) Share code with option "Anyone at My Domain with the link"

  • only my domain users can access it (not everyone on the web)
  • make it a little harder to find (so they can't search for it)

2) Break off any function you don't want users to potentially see into a seperate Library; make this Library private

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1
Solution 2 Nathan