Google Apps Script quickstart

Create a Google Apps Script that makes requests to the Directory API.

Quickstarts explain how to set up and run an app that calls a Google Workspace API. This quickstart uses a simplified authentication approach that is appropriate for a testing environment. For a production environment, we recommend learning about authentication and authorization before choosing the access credentials that are appropriate for your app.

In Apps Script, Google Workspace quickstarts use Advanced Google services to call Google Workspace APIs and handle some details of the authentication and authorization flow.

Objectives

  • Configure the environment.
  • Create and configure the script.
  • Run the script.

Prerequisites

  • A Google Workspace domain with API access enabled.
  • A Google Account in that domain with administrator privileges.

  • Access to Google Drive

Create the script

  1. Create a new script in the Apps Script editor by going to script.google.com/create.
  2. Replace the contents of the script editor with the following code:

adminSDK/directory/quickstart.gs
/**
 * Lists users in a Google Workspace domain.
 * @see https://developers.google.com/admin-sdk/directory/reference/rest/v1/users/list
 */
functionlistUsers(){
constoptionalArgs={
customer:"my_customer",
maxResults:10,
orderBy:"email",
};
if(!AdminDirectory||!AdminDirectory.Users){
thrownewError("Enable the AdminDirectory Advanced Service.");
}
constresponse=AdminDirectory.Users.list(optionalArgs);
constusers=response.users;
if(!users||users.length===0){
console.log("No users found.");
return;
}
// Print the list of user's full name and email
console.log("Users:");
for(constuserofusers){
if(user.primaryEmail){
if(user.name?.fullName){
console.log("%s (%s)",user.primaryEmail,user.name.fullName);
}else{
console.log("%s",user.primaryEmail);
}
}
}
}

  1. Click Save .
  2. Click Untitled project, type Quickstart, and click Rename.

Configure the script

Enable the Directory API

Open the Apps Script project.

  1. Click Editor .
  2. Next to Services, click Add a service .
  3. Select Admin Directory API and click Add.

Run the sample

In the Apps Script editor, click Run.

The first time you run the sample, it prompts you to authorize access:

  1. Click Review permissions.
  2. Choose an account.
  3. Click Allow.

The script's execution log appears at the bottom of the window.

Next steps

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2026年07月22日 UTC.