FreshLearn is an all-in-one creators suite that empowers creators to monetize 'what they know'.
Go to siteThe 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}`,
},
})
},
})
Automated Course Enrollment: Synchronize sign-ups from a Google Form to Freshlearn by automatically enrolling new users into a specific course once they submit the form, ensuring a seamless registration process.
Course Performance Dashboard: Collect analytics from Freshlearn and send them to Google Sheets using a scheduled Pipedream workflow, providing a regularly updated overview of how well different courses are performing.
Slack Notifications for Learner Progress: Set up a workflow that monitors learner progress within Freshlearn and sends updates or congratulations messages to a Slack channel when learners achieve milestones, keeping the community engaged.
Enrolls an existing member in a new course. See the documentation
Updates the details of an existing member. See the documentation
Freshlearn uses API keys for authentication. When you connect your Freshlearn account, Pipedream securely stores the keys so you can easily authenticate to Freshlearn APIs in both code and no-code steps.
To retrieve your API key,