3

I've noticed that only the Owner of a Google App Script is able to Publish > Deploy as API Executable the App Script. When any other users that has been added as an Editor tries to do the same, they get an error Failed to retrieve script's execution endpoint information.

Is there a way to allow other team members with editor rights to the App Script perform the Publish > Deploy as API Executable?

EthanS
  • 734
  • 1
  • 5
  • 8

1 Answers1

3

Please try setting devmode:false.

As mentioned in Using the Execution API, if devmode is true, only the owner of the script can execute in development mode.

You may also refer to this SO post for additional information on why you encountered the error.

Community
  • 1
  • 1
Teyam
  • 7,686
  • 3
  • 15
  • 22