Questions tagged [execution-api]

The Apps Script Execution API is a REST interface that lets a third-party application call a function defined in an Apps Script project and receive a response. This API lets you expose the full utility of Apps Script to any application, including Android and iOS apps.

https://developers.google.com/apps-script/guides/rest/

1 questions
0
votes
0 answers

Google Apps Script Execution API not running script or returning error?

I'm trying to catch a SQLAlchemy error and on error execute a Google Apps Script, which is deployed as an API executable. Example error to catch: [SQL: INSERT INTO mytbl (id, attr) VALUES (%(id)s, %(attr)s)] [parameters: ({'id': 177, 'attr':…