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

Getting "permissionPreset" and "emailPermission" using google admin-sdk api

How do I get "permissionPreset" and "emailPermission" using google admin-sdk api? Here also I didn't get. https://developers.google.com/admin-sdk/directory/v1/reference/groups/list Can anyone please shed some light on this? TIA Riyaz.A
Riyaz Ashraf
  • 163
  • 1
  • 10
0
votes
1 answer

Prevent user email delegation confirmation link

Currently, using the [deprecated] Google-apps APIs I can delegate email from one user's account to another account: def gmailSettingsService = new GmailSettingsService(/* credentials... */) gmailSettingsService.addEmailDelegate(userId,…
dingalla
  • 1,219
  • 3
  • 12
  • 19
0
votes
1 answer

GoogleApps Provisioning API to move a user from one organization to another

i have a use case to move a user from one Organization to another. The Api i am using is provisioning API. Managing Org Users gave an example for lab. Can anybody please share more info on what jar's need to be used to implement this. My rest of…
0
votes
1 answer

How do I rename a user with the Google Admin SDK Directory API?

In the old Provisioning API, we were able to rename user accounts. I don't see a pertinent parameter in the new Directory API documentation which would allow for renaming of a user account. Is this still…
0
votes
1 answer

As a reseller, how do I create a new Google Apps user using the Admin SDK Directory API?

As we transition from the deprecated Provisioning API over to the new Directory API, I see some gaping holes in the documentation in regards to how I as a reseller can manage my customers (Google Apps customers). Specifically, I'd like to know how I…
0
votes
1 answer

.NET Google Provisioning API (v2.2.0.0) bad request error from RetrieveGroup() method

I understand the Google Provisioning API will be deprecated as of tomorrow (iirc), but the news of this came to us a little late (not Google's fault btw) and we don't have time to overhaul our email account management software at the moment. From a…
0
votes
2 answers

getting started with google directory API and device management

Heyy, I was looking into Google apps for business and playing with the API explorer ... I have a reseller account with google let's say stack@reseller.goteam.com and this works for creating users, org units, subscriptions and so. I want to start…
0
votes
1 answer

How will the de-commisioning of the google email provisioning API as of 8/31/13 affect the user.emailLists feedLink?

Google has been sending out announcements reminding all customers that appear to still be using the Email List Provisioning API that the API will be de-commissioned on 8/31/13 and that applications that use it should be updated to use the new…
Shon Vella
  • 123
  • 1
  • 5
0
votes
1 answer

Create Account Using Google Provisioning API

i am trying to create account using Google Provisioning API from reseller account. Let we say the reseller account is : reseller@reseller.com . Before that i already subscribe domain "domain.com" from Google Reseller API. Based this link…
xikyu46
  • 18
  • 2
0
votes
3 answers

Creating Admin Accounts for Domains Created from Reseller API

I am trying to automate the entire process of creating a google apps account through my company's reseller account with google, without any human having to manually enable anything. Here's a quick scenario of what I am doing. Create Customer…
0
votes
1 answer

Google Provisioning API 403 Error

I've been getting a HTTP 403 error when trying to call the 'Create a user account' operation with the Provisioning API (via POST @ https://apps-apis.google.com/a/feeds/domain/user/2.0). The response received is a 403 error: "error": { "errors":…
user2495152
  • 5
  • 1
  • 4
0
votes
1 answer

Retrieving All Organization Users with .NET

I'm attempting to retrieve all organization users as shown in the code below: OrganizationService service = new OrganizationService(domain, applicationName); service.setUserCredentials(adminEmail, adminPassword); …
0
votes
1 answer

Is there any way to get domain users under google enterprise apps domain using OAuth 2.0?

Google Provisioning APIs use Google data protocol which requires admin userid and password. I looking for something like Google drive APIs so that I can use authority delegated service account to fetch entreprise info also. Idea is to avoid asking…
0
votes
0 answers

Getting a HTTP 401/400 when requesting users for a domain in Google Apps Provisioning API

We have an app that is integrated with Google Apps domains, which allows domain admins to provision users in their Google Apps Domain in our web app on a nightly basis. Previously I noticed that in cases where the admin revoked access to our app in…
Archit Baweja
  • 973
  • 7
  • 18
0
votes
1 answer

Google Apps Python provisioning API & OAuth mess

I'm trying to provision (among other things) groups for our Google Apps domain, using python. I'm also attempting to using OAuth to authorise my application. The API documentation for Python seems to be missing or broken links. But from searching…