I am reading Google Classroom Rest APIs and not getting clear answers as to how can I get full access to specific course including Announcements, Questions and Assignments.
Use Case:
Lets say we get all the courses using: List
and Students List
Now, How can I get all the Students Announcements, Questions and Assignments posted in specific course.
Is there a Google+ apis that we can use injunction with Classroom or just Classroom apis that we can use to access this critical information?
I am trying to merge existing platform with google classroom and its very critical to have access to this information so that all student submissions are in sync.
Thanks.
The Classroom API does not have the functionality you are referring to. From the documentation:
The Classroom API provides a RESTful interface for you to manage
courses and rosters in Google Classroom.
All it currently does is allow you to manage a list of courses, their teachers, and their students.
If you want manage additional data such as Assignments, you'll need to build that functionality yourself. The Drive API and Google Apps Script may be of assistance in storing and sharing files and documents.
probably you have found by now else FYI.. Google has released a new set of APIs to manage assignments under ManageCourse-work
https://developers.google.com/classroom/
Related
I'm looking to find a way to sync travelers' profiles in Sabre.
I could not found any Rest API for this purpose.
Regarding Soap APIs: I found some APIs from Sabre documentation but I'm confused a bit to choose the right one.
Can anyone help me to figure it out which one is the proper Soap API to synchronize the travellers' profiles in Sabre?
I want all my company employees profiles synchronized in sabre. Then I can, later on, add PNR against those employees records in Sabre.
There are not any direct API’s available to synchronize profiles. But there are API’s available which can be used to perform different operations like creating profiles, updating profiles, retrieving profile data, moving profile data to a PNR for booking, searching profiles and so on. This includes not just traveler profiles but other like corporate, group, travel agency and so on.
Here is a link for the same:-
http://webservices.sabre.com/drc/providerdoc/PPP/Sabre_Profiles_Technical_User_Guide.pdf
You can also search by the go to the Sabre developer website and search for Profiles to get a list of all the associated API’s:-
https://developer.sabre.com/search?keywords=profiles
Some of the most common methods are:-
OTA_ProfileCreateRQ – Profile creation
OTA_ProfileModifyRQ – Profile modification
OTA_ReadRQ- Retrieving profile details
OTA_Delete – Profile deletion
EPS_EXT_ProfileToPNRRQ - Allows the user to move profile data into the Sabre Passenger Name Record (PNR).
I need to get sample data from sales force developer account but i am unable to find any API to get any data from sales force.
Is there any API exposed by sales force to accomplish the task.
Salesforce exposes a large number of thoroughly documented APIs.
Access to record data is most commonly achieved through the standard REST API.
You may be most interested in the endpoints named under Working with Records, which provide access to record data, or Working with Searches and Queries.
We're interested in integrating our application with Google Authentication via SAML for online education applications. In this application, we're interested in the following:
having Google provide authentication/identification of users against a customer's directory (only their directory, not all of google).
receiving role information that describes the user's role (Teacher, Student, etc.)
eventually retrieving roster information that describes the relationship of users in the system and their classes.
Our intent is to support Google Classroom customers. I'm looking for a good reference & have open questions after perusing Google's G Suite info. Can you point me to good resources or provide some insight?
Looking in at the DATA.com API we do have a license for 1000 API queries a day. My question is we are looking at a different CRM to handle our outbound sales processes other than SalesForce.
Base CRM looks like it is capable of handling our needs for our business and account processes. Is it possible to have the Base API send queries to the Data.com API and return the results?
I also see there is an API purchase within the SalesForce API. When you conduct a search API query does it require you to purchase the results if you have a license already in place to use Data.com?
Our goal is to have a primary CRM pull information from Data.com or another source for lead information and display it in the new CRM.
If none of this is possible with the solution I am looking at might you suggest other platforms.
Thank you!
Unfortunately, we don't currently offer the triggers to query Data.com's database. However, there are a couple of other ways to integrate Data.com with Base. You can either use a polling-driven trigger to Data.com, you could attempt to configure a workflow in Data.com to send this data over to Base, or you could use an import to pull this data into Base (as many of our customers have done). I hope that helps!
I'm working on an app that creates private Github repositories (among other things). Every once in a while, we are over quota with our private repos.
I'd like to know how many repositories we have left before making the API call that will fail.
Can that be done, using the Github API? I couldn't find anything in the documentation, but that's doesn't mean it's not possible :)
awendt, I'm not quite familiar with private quotas, but authenticated users receive a Plan object when the API returns the call to /user. This will tell you what plan you have and will tell you how many private_repos you're allowed. With that information and the information from /user which tells you how many private repos you currently have, you should be able to figure it out.
Then again, you could use github3.py and you'd have the User object, with the plan attribute and could use those two together as described above.
Disclaimer I'm github3.py's author.