Questions tagged [google-provisioning-api]

The Google Apps Provisioning API has been officially deprecated as of May 15, 2013. It has been replaced by the Admin SDK’s Directory API.

The Google Apps Provisioning API has been officially deprecated as of May 15, 2013. It has been replaced by the Admin SDK’s Directory API. The Google Apps Provisioning API will continue to work as per Googles Deprecation Policy.

Google Apps allows website administrators to offer their users co-branded versions of a variety of personalized Google applications, such as Gmail. This document describes the Google Apps Provisioning API, which enables application developers to programmatically enable access to these applications. Specifically, the API provides functions for creating, retrieving, updating and deleting user accounts with one or more domains, nicknames, email aliases, organization units, and groups.

See also the official documentation.

89 questions
0
votes
1 answer

Deleting a sub organization

I am running into an issue when I try to delete sub organizations. I get the following error (customer ID was removed) Execution of request failed: https://apps-apis.google.com/a/feeds/orgunit/2.0/CustId/QA%2ftesting%2fmoar%2bgroups"} I am using the…
Roloc
  • 1,910
  • 2
  • 13
  • 16
0
votes
1 answer

Get all username of a domain using gdata in AppEngine

I have just began to learn AppEngine with python and in my project I'm building an application in which I need to retrieve all users of my domain. I used RetrieveAllOrgUsers and RetrieveAllUsers to get users of my domain, but both of them crash when…
0
votes
1 answer

Password expiration in Google Apps

Is it possible, with Google Provisioning API, to set an expiration date to the password? Or to check when the password was set?
Berna
  • 35
  • 1
  • 5
0
votes
1 answer

UserName in Google Provisioning api

i am developing an app.i am using google provisioning api in this app.in documentation it is mentioned that for getting information related to a user account we have to pass a parameter userName in url GET…
mathlearner
  • 7,509
  • 31
  • 126
  • 189
0
votes
1 answer

Other Admin except Super admin can access provisioning api

i am developing an app.i am using google provisioning api in this app.in documentation it is mentioned that admin account can acces provisioning app.there are various types of admin accounts in google apps for example 1.Super Admin 2.Groups…
mathlearner
  • 7,509
  • 31
  • 126
  • 189
0
votes
2 answers

Limit visibility to Google Domain Shared Contacts

Is it possible to limit the visibility of google domain shared contacts? Assuming that my organization structure has: A report to B reports to C. If A adds a new shared contact is visible for everyone. If B adds a new shared contact is visible for C…
0
votes
0 answers

Google Reseller API returning "Resource already exists" on Insert Customer

Dear Google Engineers, I keep trying to insert a customer and receive the following response: [error] => Array ( [errors] => Array ( [0] => Array ( …
Corey Ballou
  • 42,389
  • 8
  • 62
  • 75
0
votes
1 answer

What is the correct scope for the groups provisioning-api readonly?

I'm running into an issue attempting to use the provisioning api groups scope in a readonly mode. I've authorized my service account in a google apps domain with the following scope https://apps-apis.google.com/a/feeds/group/#readonly Which…
mvliet
  • 56
  • 2
0
votes
1 answer

How to be sure that a user is in a group

When a user is added to a group using client.AddMemberToGroup(group_id, member_id) they are not appearing in the groups UI of the cPanel they are also not reported as a member when client.RetrieveAllMembers(group_id) is run. However, when…
John
  • 1,466
  • 3
  • 21
  • 38
0
votes
1 answer

How to create user on domain with Google apps marketplace API?

We have application published with Google apps marketplace. we need to create user on domain where they install our app through API. I have tied the following php code but, i am getting 401 error. Please help. $oauthOptions = array( …
0
votes
1 answer

How do I fetch orgusers beyond the 1st 100 using the Google Apps OrgUser provisioning API feed

I am using Zend's gdata library for the Google Apps provisioning API. Since Zend doesn't yet support fetching org users (no retrieve function provided by the library for this feed), I am making a custom gdata query to the url (as suggested in the…
0
votes
1 answer

How to use de OAuth2 access token with de google api Zend Library for provisioning api

I am developing a web application, I have the access token and refresh token I got doing my POST requests, I do not understand and do not see in the Google Provisioning API documentation how can i use the Zend library with these tokens, the methods…
0
votes
1 answer

Admin privileges from google apps user

i would need to get detailed admin privileges from google apps user. From Provisioning API the maximum I can know if the user is superadmin. But I want to know if the user can modify user accounts, to add users, edit users, etc. When i have a…
nori.cz
  • 3
  • 2
0
votes
1 answer

GAE: Google Apps Provisioning UserEntry getEmail return null

I am trying to get user email listing from my domain. Ok. This is how I do it (code snippet): UserService userService = new UserService("ProvisioningApiClient"); userService.setOAuth2Credentials(credential); userService.useSsl(); UserFeed userFeed…
lannyboy
  • 617
  • 1
  • 10
  • 20
0
votes
1 answer

Google App Engine and Group Provisioning

I really need some help here, I've been at this for almost 2 weeks. What I'm trying to do is use Google's provisioning API inside of GAE (Google App Engine) using oAuth2. I know there are a few of examples using oAuth1 to accomplish this. My…