Ryan Sequeira
Ryan Sequeira

Reputation: 330

Is there an google (REST) API to list the Admin Roles in a Google Apps account?

I can view the Admin roles and the users is each admin role in my Google Apps account from the Admin Console. The default admin roles being:

I wanted to know if i could programmatically list all the Admin Groups and list all the users in each Admin Group.

Upvotes: 0

Views: 167

Answers (1)

miketreacy
miketreacy

Reputation: 1120

Using the Directory API, you can retrieve a user's admin status, isAdmin (super admin) and isDelegatedAdmin (assigned an Admin role). Unfortunately, these are both boolean responses and, AFAIK, you cannot pull the specific role details.

Upvotes: 1

Related Questions