Returns the email of the user whose permissions the script is using.
class Session method .getEffectiveUser()
Session is the Apps Script service.
.getEffectiveUser() is the method name you will see after a dot in your code.
What it does
Why it's used
- See whose permissions apply when a trigger runs as owner.
- Debug auth issues on shared spreadsheets.
Common errors
- Forgetting parentheses on getEffectiveUser. Write Session.getEffectiveUser(), not Session.getEffectiveUser or getEffectiveUser by itself.
- Skipping dots between chained calls. Each step needs a dot, like Session.getEffectiveUser().
- Adding spaces where they do not belong. Write Session.getEffectiveUser(), not Session .getEffectiveUser(), Session.getEffectiveUser (), or Session . getEffectiveUser().
- Wrong capitalization. Use Session and getEffectiveUser, not session or geteffectiveuser.
Explore
Related methods
-
.getActiveUser()
Returns the email of the user running the script.
-
.getTemporaryActiveUserKey()
Returns a temporary key that identifies the current user.
-
.getScriptTimeZone()
Returns the time zone set on the script project.
More Apps Script
Better Sheets tutorials
No tagged tutorials yet. Fetch Apps Script from the harvest table and this page fills automatically.
Related blog posts
Written guides about Session.getEffectiveUser().
How to Send Google Forms Entries Automatically with Apps Script
Google Forms provides basic email notifications for form submissions, but enhancing these notifications with detailed summaries can significantly improve productivity and response management.
Read post →What's Better Than Google Sheets?
Nothing is better than Google Sheets. You just need to learn more about the unlimited power of Google Sheets. Functions, Formulas, Apps Script and more.
Read post →Extract URLs from Google Sheets
Extract url from hyperlink google sheets.Skip the Command K. This Google Sheet tutorial will make it easier for you to extract URLS from Google Sheets.
Read post →