Freshlearn

FreshLearn is an all-in-one creators suite that empowers creators to monetize 'what they know'.

Integrate the Freshlearn API with the GitHub API

Setup the Freshlearn API trigger to run a workflow which integrates with the GitHub API. Pipedream's integration platform allows you to integrate Freshlearn and GitHub remarkably fast. Free for developers.

Create Course Enrollment with Freshlearn API on New Branch (Instant) from GitHub API
GitHub + Freshlearn
 
Try it
Create Course Enrollment with Freshlearn API on New Card in Column (Classic Projects) from GitHub API
GitHub + Freshlearn
 
Try it
Create Course Enrollment with Freshlearn API on New Collaborator (Instant) from GitHub API
GitHub + Freshlearn
 
Try it
Create Course Enrollment with Freshlearn API on New Commit (Instant) from GitHub API
GitHub + Freshlearn
 
Try it
Create Course Enrollment with Freshlearn API on New Commit Comment (Instant) from GitHub API
GitHub + Freshlearn
 
Try it
New Branch from the GitHub API

Emit new event when a branch is created See the documentation

 
Try it
New Card in Column (Classic Projects) from the GitHub API

Emit new event when a (classic) project card is created or moved to a specific column. For Projects V2 use New Issue with Status trigger. More information here

 
Try it
New Collaborator from the GitHub API

Emit new event when a collaborator is added See the documentation

 
Try it
New Commit from the GitHub API

Emit new event when commits are pushed to a branch See the documentation

 
Try it
New Commit Comment from the GitHub API

Emit new event when a commit comment is created See the documentation

 
Try it
Create Course Enrollment with the Freshlearn API

Enrolls an existing member in a new course. See the documentation

 
Try it
Create Issue with the GitHub API

Create a new issue in a Gihub repo. See docs here

 
Try it
Create Member with the Freshlearn API

Creates a new member within FreshLearn. See the documentation

 
Try it
Search Issues and Pull Requests with the GitHub API

Find issues and pull requests by state and keyword. See docs here

 
Try it
Update Member with the Freshlearn API

Updates the details of an existing member. See the documentation

 
Try it

Overview of Freshlearn

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.

Connect Freshlearn

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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}`,
      },
    })
  },
})

Overview of GitHub

The GitHub API is a powerful gateway to interaction with GitHub's vast web of data and services, offering a suite of endpoints to manipulate and retrieve information on repositories, pull requests, issues, and more. Harnessing this API on Pipedream, you can orchestrate automated workflows that respond to events in real-time, manage repository data, streamline collaborative processes, and connect GitHub with other services for a more integrated development lifecycle.

Connect GitHub

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    github: {
      type: "app",
      app: "github",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.github.com/user`,
      headers: {
        Authorization: `Bearer ${this.github.$auth.oauth_access_token}`,
        "X-GitHub-Api-Version": `2022-11-28`,
      },
    })
  },
})