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
2 answers

Write access to Groups with Google Apps Provisioning API

I am writing an app to interact with our Google Apps for Education domain using Zend Gdata framework and 3-legged OAuth. So far I am only able to gain read-only access to Groups. It works fine and I have access to all information. However, write…
solefald
  • 1,739
  • 1
  • 15
  • 29
0
votes
1 answer

Google apps api created users created are suspended

I am using google apps provisioning api from java (Idm - Midpoint). Whenewer i create test user it is supended with suspended reason weblogin reqiered. Then account needs to be authenticated by sms. Other istallation of this software is working fine…
0
votes
0 answers

Google API consent screen not showing up on after publishing to server

I am working with the Google Provisioning API. I have used Web Application type project from Google developer console. I have used Diamto blog and samples and it works perfectly on my local with all options like FileStore, Custom File Store,…
0
votes
1 answer

Exception using Google.GData.Apps : The remote server returned an error: (503) Server Unavailable

I am using google provisioning api on my website. I want to authenticate user using AppsService class. AppsService service = new AppsService("domain", "admin username", "admin password"); UserEntry user = service.RetrieveUser("username"); But it…
0
votes
1 answer

How to access to userDefined or ExtendedProperties data of a User in Directory API

Since the Google Apps Profiles API has been officially deprecated. It has been replaced by the Directory API. The fields (Organizations, Phones numbers, ...) of a ContactEntry (Apps Profiles API) exists in the User (Directory API). But I cannot…
0
votes
0 answers

Why are all of my requests to the Google Provisioning API failing with a 503 error?

All of my requests to the Google Provisioning API started failing with a 503 HTTP error code. Has something changed?
Eric Koleda
  • 12,420
  • 1
  • 33
  • 51
0
votes
1 answer

Migrate from Google Provisioning API to Directory API in Rails Application

I am currently maintaing a Rails application that relies on the Google Provisioning API. Unfortunately, this API is being phased out soon and replaced by the Admin SDK and Directory APIs. It uses a username and password combination to login to the…
0
votes
2 answers

Nickname vs. Alias in Google API

I am working on migrating some code that uses the Google APIs to manage users in my company's Google Apps domain before the April 20, 2015 deadline (see Reminder to migrate to updated Google Data APIs). I am new to this project and I am having…
rlandster
  • 7,294
  • 14
  • 58
  • 96
0
votes
2 answers

google directory api java - Invalid Password

I'm trying to create a new user account via the Google Directory API using the code below. The result I get back is invalid password. What password? Problem with the P12 file I downloaded? Collection SCOPE =…
0
votes
2 answers

Google Admin SDK Directory API - Getting Groups from varying Domains

I'm attempting to migrate our code for using the (soon to be deprecated) Google Provisioning API to the Admin SDK Directory API, via the .NET client libraries provided by Google. In the old Provisioning API (via the .NET client library) a call to…
0
votes
1 answer

Converting from GoogleApp Provisioning API to new SDKs

We have been creating and managing our GoogleApps accounts for a couple years by simply generating a block of XML code for the Provisioning API, and then using VBScript to do a POST. Now GoogleApps is requiring that we move to the new Administrative…
0
votes
2 answers

Adding User to Organization Unit and Group using Google Apps Provisioning API

I have done coding in .Net to create google account using Google Apps Provisioning API. I am successful in creating Google Account but I am not being able to add user to particular Organization Unit and Group. I have achieved the goal of account…
TechPro
  • 331
  • 1
  • 10
  • 29
0
votes
1 answer

Getting started with Google Group APIs

Hi Everyone and thanks for reading. I work in higher education and just recently inherited a Google Admin position from a leaving co worker. It turns out that we had a webpage that listed all of our different groups that used the old version of the…
0
votes
1 answer

Using Google Directory API to fetch all users in a domain

I am building an app for the Google Marketplace and just made the switch to OAuth 2.0 from 1.0 before final deployment. Before the switch, I was able to use the provisioning API to fetch users in a domain that has installed the app given,…
0
votes
1 answer

Can user attributes such as Title, Company, Address, Phone etc be added/updated?

Does GoogleApps Provisioning API support adding/updating user attributes such as Title, Company, Address, Phone etc? As far as I can tell, it only supports adding a user's username, password, IsSuspended status and quota.