Google for Education
Emit new event when an assignment in a course is marked as done.
Emit new event for each message posted to one or more channels
Emit new event when an assignment's due date is created or updated'.
Emit new event for each forum thread message posted. Note that your bot must have the MESSAGE_CONTENT
privilege intent to see the message content, see the docs here.
Retrieve information about an assignment. See the docs here
Assign a role to a user. Remember that your bot requires the MANAGE_ROLES
permission. See the docs here
Retrieve a list of assignments for a course. See the documentation
Create a new invite for the channel. See the docs here
With the Google Classroom API, you can manage your Google Classroom classes and
coursework. You can also use the API to create and manage announcements,
assignments, and student submissions.
Here are some example applications you could build with the Google Classroom
API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
google_classroom: {
type: "app",
app: "google_classroom",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.googleapis.com/oauth2/v1/userinfo`,
headers: {
Authorization: `Bearer ${this.google_classroom.$auth.oauth_access_token}`,
},
})
},
})
The Pipedream Discord app enables you to build event-driven workflows that interact with the Discord API. When you authorize the Pipedream app's access to your guilds, you can use Pipedream workflows to perform common Discord actions, or write your own code against the Discord API.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
discord_bot: {
type: "app",
app: "discord_bot",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://discord.com/api/users/@me`,
headers: {
"Authorization": `Bot ${this.discord_bot.$auth.bot_token}`,
},
})
},
})