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

Amit Agarwal

Google Developer Expert, Google Cloud Champion

Amit Agarwal is a Google Developer Expert in Google Workspace and Google Apps Script. He holds an engineering degree in Computer Science (I.I.T.) and is the first professional blogger in India.

Amit has developed several popular Google add-ons including Mail Merge for Gmail and Document Studio. Read more on Lifehacker and YourStory

0

Awards & Titles

Digital Inspiration has won several awards since it's launch in 2004.

Google Developer Expert

Google Developer Expert

Google awarded us the Google Developer Expert award recogizing our work in Google Workspace.

ProductHunt Golden Kitty

ProductHunt Golden Kitty

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

Microsoft MVP Alumni

Microsoft MVP Alumni

Microsoft awarded us the Most Valuable Professional (MVP) title for 5 years in a row.

Google Cloud Champion

Google Cloud Champion

Google awarded us the Champion Innovator title recognizing our technical skill and expertise.

Email Newsletter

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

We will never send any spam emails. Promise.