with LearnDash and Ringg AI?
The LearnDash API enables integration with LearnDash LMS, offering developers a way to automate course management tasks, access user data, and enhance the e-learning experience. Using Pipedream, you can build serverless workflows that react to events in LearnDash, sync data with other services, or automate repetitive tasks, all without managing infrastructure.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
learndash: {
type: "app",
app: "learndash",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.learndash.$auth.url}/wp-json/ldlms/v1/sfwd-courses`,
auth: {
username: `${this.learndash.$auth.username}`,
password: `${this.learndash.$auth.application_password}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ringg_ai: {
type: "app",
app: "ringg_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://prod-api.ringg.ai/ca/api/v0/workspace`,
headers: {
"x-api-key": `${this.ringg_ai.$auth.api_key}`,
},
})
},
})