Using classroom API (courses.create() method) we are able to create one course, but I want to create courses in bulk using API.
Is there any method in API to do so? if so what is the method that I should use?
Similarly how to add teachers or students to a course in bulk?
You can batch the requests together. Be aware of API usage limits though.
Related
I'm trying to use FHIR to pull all patients, encounters and appointments into an intermediate database for further analysis. Most of the FHIR API's appear to be designed to handle one patient ID at a time, or one encounter at a time, etc. What is the most efficient way to pull the full set of encounters and then keep it current, as well as appointments, etc.?
Please take a look at the FHIR specification website, specifically the page about the RESTFul API and look at search. The APIs have methods to support the interactions described on the website.
I know that we can create google apps for education accounts in bulk through admin console by uploading a CSV file, but I want to do that by using classroom API. Does the classroom API has that capability? if so how can I ? if not is there any way easier than doing through admin console ?
Assume that I have google apps for education domain.
The Classroom API does not provide the ability to create accounts.
You can use the Directory API for this though; see the create a user account docs.
The Classroom API is a low level programming interface and can not handle CSV processing on it's own. However, writing an app that uses the API to create courses based on a CSV is trivial. My app, GAM can create courses via Classroom API and supports bulk CSV operations.
Presently i am working on Google Classroom API to integrate Google Classroom to my .net web application.I am able to store courses details,teachers and students in each course in my SQL server database but i am unable to store Assignment and assessments related data given by teacher and students marks and no.of students did assignments in time in my Database.How can i achieve this
Your small answer will help us a a lot
The Google Classroom API currently doesn't provide access to assignment data. You can follow feature request #3887 to get updated when this feature is added.
I have to create a group in yammer using JavaScript or using any other services so we can call that service from AJAX. For that group i can give my own name,number of users and mainly i can get that group ID.
Please Help Me.
Like atmd said there doesn't seem to be any API for creation of Yammer-groups.
There are, however, endpoints for joining/leaving groups;
POST https://www.yammer.com/api/v1/group_memberships.json?group_id=:group_id
DELETE https://www.yammer.com/api/v1/group_memberships.json?group_id=:group_id
wich in turn are joining and leaving.
Source
I need to download all existing payment information from a paypal account to do some analysis on it, so I set up paypal's ruby rest sdk, which involved creating a new application with its own API keys and whatnot. I can make a successful request with the following:
payment_history = Payment.all( :count => 10 )
However,
payment_history.payments
Is empty.
I'm not sure if this application can only access payments created with it? Can I not get pre-existing payments with the rest api? I would prefer to use ruby, if that's possible, as I would like to keep this all within the simple script I have to analyze similar stripe payments.
Some guidance would be extremely appreciated, as paypal's labrinth of documentation and overlapping APIs have me pretty confused.
You will be able to query only those payments that are made or created with Rest API not the Classic APIs. You can use the Classic Ruby SDKs for the appropriate product to get the Transaction details of the classic APIs