How to List all your Team Drives in Google Drive with Apps Script

Google Team Drives are shared spaces in your Google Drive where you can store files and they instantly become available to all members of the Team Drive.

Unlike regular folders in Google Drive where the files are owned by the individual, files in Team Drive belong to the team and, if a user is no longer part of Team Drive, their files continue to be accessible.

While Google Team Drives are only available in the business and enterprise editions of Google Workspace, anyone, including consumer Gmail accounts and legacy Google Apps accounts, can be invited to become members of an existing Team Drive.

This Google Apps Script snippet uses the Google Drive API (v3) to determine the list of all Team Drives that the current user is a member of.

function getGoogleTeamDrives() {
  try {
    var teamDrives = {},
      baseUrl = 'https://www.googleapis.com/drive/v3/teamdrives',
      token = ScriptApp.getOAuthToken(),
      params = {
        pageSize: 10,
        fields: 'nextPageToken,teamDrives(id,name)',
      };

    do {
      // Written by Amit Agarwal @labnol
      // Web: www.ctrlq.org

      var queryString = Object.keys(params)
        .map(function (p) {
          return [encodeURIComponent(p), encodeURIComponent(params[p])].join('=');
        })
        .join('&');

      var apiUrl = baseUrl + '?' + queryString;

      var response = JSON.parse(
        UrlFetchApp.fetch(apiUrl, {
          method: 'GET',
          headers: { Authorization: 'Bearer ' + token },
        }).getContentText()
      );

      response.teamDrives.forEach(function (teamDrive) {
        teamDrives[teamDrive.id] = teamDrive.name;
      });

      params.pageToken = response.nextPageToken;
    } while (params.pageToken);

    return teamDrives;
  } catch (f) {
    Logger.log(f.toString());
  }

  return false;
}

The return object includes the ID of the Team Drive which is also the ID of the top level folder for this Team Drive. You can use the existingDriveApp service of Google Apps Script to create sub-folder or add new files to this folder.

Amit Agarwal is a web geek, solo entrepreneur and loves making things on the Internet. Google recently awarded him the Google Developer Expert and Google Cloud Champion title for his work on Google Workspace and Google Apps Script.

Awards & Recognition

Google Developer Expert

Google Developer Expert

Google awarded us the Developer Expert title recogizing our work in Workspace

ProductHunt Golden Kitty

ProductHunt Golden Kitty

Our Gmail tool won the Lifehack of the Year award at ProductHunt Golden Kitty Awards

Microsoft MVP Alumni

Microsoft MVP Alumni

Microsoft awarded us the Most Valuable Professional title for 5 years in a row

Google Cloud Champion

Google Cloud Champion

Google awarded us the Champion Innovator award for technical expertise

Want to stay up to date?
Sign up for our email newsletter.

We will never send any spam emails. Promise 🫶🏻