Preeti
Preeti

Reputation: 1386

How can i get list of Domain user's from Google Apps account?

I am using Google API Ver 2 for .NET. I want to access list of domains users with there information like userid and password.

How can display list domain user's using Admin's credential?

Thanx

Upvotes: 1

Views: 1046

Answers (1)

Jonas Høgh
Jonas Høgh

Reputation: 10874

Use the RetrieveAllUsers() method as described here: http://code.google.com/googleapps/domain/gdata_provisioning_api_v2.0_reference_dotnet.html#Retrieve_All_Users_in_Domain_Example

To create the service object and authenticate with your admin account, see this code sample:

http://code.google.com/googleapps/domain/gdata_provisioning_api_v2.0_reference_dotnet.html#Authenticating_To_Your_Domain

Upvotes: 3

Related Questions