Questions tagged [google-admin-settings-api]

Allows administrators to retrieve and change the settings of their domains.

The Google Apps Admin Settings API allows administrators of Google Apps domains to retrieve and change the settings of their domains in the form of feeds.

57 questions
7
votes
1 answer

Admin Settings API with oauth2 in gdata and python

Admin Settings API with oauth2 I'm trying to connect an app written in python to Admin Settings API with OAuth2 credentials but I get an error: source code: from oauth2client.client import Credentials import gdata.apps.adminsettings.service import…
cprietorod
  • 211
  • 1
  • 7
4
votes
1 answer

How to simulate sandbox "pre-installed by policy" extension

I'm developing an extension and I'm trying to use the enterprise.deviceAttributes API, but "This API is only for extensions pre-installed by policy.". How can I simulate a pre-installed by policy extension in sandbox so I can develop it? Also, I…
4
votes
1 answer

Where/how can I whitelist access to my Google Apps API?

In the https://developers.google.com/console/help/ page there are instructions for "Whitelisting by IP Address (Server-side applications)". The directions say to click "Configure traffic filters" on the Quotas page yet that link/button doesn't…
Jonathan Chan
  • 51
  • 1
  • 1
  • 3
3
votes
1 answer

Why am I getting error for access restriction when performing code for forwarding emails?

I am new to Google API and currently working on adding forwarding email address using code. The code is as below. credentials = get_credentials(request.data['code'], request.data['state']) service = build_gmail_service(credentials) address =…
3
votes
2 answers

Get list of domains for an Organization using Google Apps Admin SDK?

An organization in Google Apps can have multiple domains. API requests to the Admin SDK require the domain name as a parameter. Ex: https://apps-apis.google.com/a/feeds/domain/2.0/{domainName}/general/defaultLanguage Is there a way to…
2arrs2ells
  • 3,637
  • 3
  • 15
  • 12
2
votes
0 answers

Alternative to Google Apps Admin Settings API

The Admin Settings API is deprecated and is scheduled to be sunset on August 16, 2017. I have used this API's in our application to enable/disable Single Sign On. Is there any alternative to the Google Apps Admin Settings API. I have referred…
2
votes
1 answer

Google Admin Directory API: Add User Employee Details

I already have a working function for adding user using Google Admin Directory: string password = Random_Password(); User newuserbody = new User(); UserName newusername = new UserName(); UserOrganization newuserorg = new…
2
votes
1 answer

Gmail API to retrieve POP Accounts Email Address

Is there an api to get the pop accounts in gmail that are configured. To manage pop account settings i found api in admin-sdk api but i could not found the api to retrieve the pop accounts email address in gmail API.
1
vote
0 answers

All apps scripts fail with error INTERNAL

I have a client that I've written a custom apps script for. Every time I execute it from his account (just like any other script) there is this error: We're sorry, there was an unexpected error while creating the Cloud Platform project. Error code…
1
vote
1 answer

Does the google .net admin API have the means to delete a user?

Does the google .net API, Google.Apis.Admin.Directory.directory_v1, have the means to delete a user? Code examples? The documentation shows the example https://www.googleapis.com/admin/directory/v1/users/liz@example.com which is no help. It seems…
John
  • 11
  • 1
1
vote
1 answer

gSuite Integeration Admin SDK Report API Date format

Hi Guys I am currently working on Gsuite Admin SDK Report API. I am successfully able to send the request and getting the response. Now, the issue is that I am not able to identify the date format returned by the Activities.list(). Here is a…
1
vote
1 answer

Google Admin Setttings API connection for .NET

I've been working with the Google directory API for quite some time now. However, I need to update SSO settings in the admin settings section of Google. Yes, they say it will be deprecated at some point, but according to a google employee, it's…
1
vote
0 answers

Managing Chrome Extensions via Admin SDK

We manage over 10,000 Chromebooks via Google Admin Console and we are having constant issues with Chrome extensions being installed (games, vpns, etc) and used by students. Our OU is broken down per school, student/teacher, grade. We are on track to…
mackhax0r
  • 435
  • 2
  • 7
  • 16
1
vote
1 answer

Oauth credentials in Google Admin Console vs Developers Console

I have a web app that needs to use Oauth 2 to authenticate with Google Apps for Education. I am the admin for the Google domain, as well as the developer, and so I have access to the Admin Console and the Developers Console. Each console has a…
1
vote
1 answer

Gmail Settings API Backend error - Python

Last month i finished working on a GAE app with Python which makes extensive use of various Google APIs for managing the google resources within the company's domain by the google admin. The app was finished!!!, but this month google announced that…
1
2 3 4