with Freshlearn and TestLocally?
Emit new event when a new test is run or completed in TestLocally. See the documentation
Enrolls an existing member in a new course. See the documentation
Get details of a specific test in TestLocally. See the documentation
Updates the details of an existing member. See the documentation
The Freshlearn API provides a gateway to interact with Freshlearn's learning management system, allowing for the automation of course creation, user management, and analytics retrieval. By leveraging this API within Pipedream, you can create powerful serverless workflows that integrate Freshlearn with other apps to enhance the educational experience, streamline administrative tasks, and analyze course performance.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
freshlearn: {
type: "app",
app: "freshlearn",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.freshlearn.com/v1/integration/member`,
headers: {
"api-key": `${this.freshlearn.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
testlocally: {
type: "app",
app: "testlocally",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://testlocal.ly/api/v0/me`,
headers: {
Authorization: `Bearer ${this.testlocally.$auth.api_key}`,
"accept": `application/json`,
},
})
},
})