LifterLMS

Unlock your WordPress LMS website success with LifterLMS, the best all-in-one platform for courses & memberships.

Go to site
Explore
/
Apps
/
LifterLMS

LifterLMS API Integrations

Build and run workflows using the LifterLMS API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

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: {
    lifterlms: {
      type: "app",
      app: "lifterlms",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.lifterlms.$auth.url}/wp-json/llms/v1/courses`,
      auth: {
        username: `${this.lifterlms.$auth.consumer_key}`,
        password: `${this.lifterlms.$auth.consumer_secret}`,
      },
    })
  },
})

Authentication

LifterLMS uses API keys for authentication. When you connect your LifterLMS account, Pipedream securely stores the keys so you can easily authenticate to LifterLMS APIs in both code and no-code steps.

To retrieve your API keys,

  • Navigate to your WordPress account and sign in
  • Go to LifterLMS plug in menu
  • Go to “Settings” > “REST API

The url field below is your WordPress site's domain where your LifterLMS plug in is installed.

For example, if you have a Wordpress.org site hosted at https://example.com, then enter example.com in the url field below.