Trigger workflows on new emails, and send emails to yourself as part of a Pipedream workflow.
Customize and send an email to the email address you registered with Pipedream. The email will be sent by notifications@pipedream.com.
Invites a user to a selected course. See the documentation
List all the courses associated with a given campus. See the documentation
export default defineComponent({
async run({ $ }) {
const options = {
subject: 'Your subject here',
text: 'Your text here'
};
$.send.email(options);
},
});
The Illumidesk API integrates virtual learning environments with tools that facilitate instruction and collaboration. On Pipedream, you can leverage this API to automate educational workflows, manage courses, and interact with users. Pipedream’s serverless platform lets you create workflows triggered by various events without maintaining infrastructure, focusing on the logic and integration between services.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
illumidesk: {
type: "app",
app: "illumidesk",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.illumidesk.com/api/v1/campuses/`,
headers: {
"Authorization": `Token ${this.illumidesk.$auth.api_key}`,
},
})
},
})