What do you want to automate

with Freshlearn and TestLocally?

Prompt, edit and deploy AI agents that connect to Freshlearn, TestLocally and 2,500+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Create Course Enrollment with Freshlearn API on New Test Run from TestLocally API
TestLocally + Freshlearn
 
Try it
Create Member with Freshlearn API on New Test Run from TestLocally API
TestLocally + Freshlearn
 
Try it
Update Member with Freshlearn API on New Test Run from TestLocally API
TestLocally + Freshlearn
 
Try it
New Test Run from the TestLocally API

Emit new event when a new test is run or completed in TestLocally. 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
Get Test with the TestLocally API

Get details of a specific test in TestLocally. See the documentation

 
Try it
Create Member with the Freshlearn API

Creates a new member within FreshLearn. See the documentation

 
Try it
List Tests with the TestLocally API

Returns a list of tests in TestLocally. See the documentation

 
Try it
Update Member with the Freshlearn API

Updates the details of an existing member. See the documentation

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

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}`,
      },
    })
  },
})

Connect TestLocally

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: {
    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`,
      },
    })
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo