with APIpie.ai and LearnDash?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
apipie_ai: {
type: "app",
app: "apipie_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://apipie.ai/v1/models`,
headers: {
"X-API-Key": `${this.apipie_ai.$auth.api_key}`,
"Accept": `application/json`,
},
})
},
})
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}`,
},
})
},
})