with Tutor LMS and Nutrient Workflow Automation?
The Tutor LMS API provides hooks into the Tutor LMS ecosystem, enabling you to automate actions and manage data around courses, lessons, quizzes, and results within the learning management system. With Pipedream, you can build workflows that react to events in Tutor LMS, such as new course enrollments, or that push data to Tutor LMS to create or update resources. Utilizing Pipedream's ability to connect to multiple services, you can synchronize Tutor LMS data with other apps, trigger notifications, and streamline administrative tasks.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
tutor_lms: {
type: "app",
app: "tutor_lms",
}
},
async run({steps, $}) {
return await axios($, {
url: `http://${this.tutor_lms.$auth.url}/wp-json/tutor/v1/courses`,
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
nutrient_workflow_automation: {
type: "app",
app: "nutrient_workflow_automation",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://workflow-trial.on-nutrient.io/api/user/`,
headers: {
Authorization: `Bearer ${this.nutrient_workflow_automation.$auth.oauth_access_token}`,
"accept": `application/json`,
},
params: {
search: `Pipedream`,
},
})
},
})