What do you want to automate

with Memberful and Lamini?

Prompt, edit and deploy AI agents that connect to Memberful, Lamini 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 Fine-Tune Job with Lamini API on New Webhook Event from Memberful API
Memberful + Lamini
 
Try it
Evaluate Job with Lamini API on New Webhook Event from Memberful API
Memberful + Lamini
 
Try it
Generate Completion with Lamini API on New Webhook Event from Memberful API
Memberful + Lamini
 
Try it
Get Batch Completions with Lamini API on New Webhook Event from Memberful API
Memberful + Lamini
 
Try it
Upload Dataset with Lamini API on New Webhook Event from Memberful API
Memberful + Lamini
 
Try it
New Webhook Event from the Memberful API

Emit new event in Pipedream when a subscribed event is triggered in memberful.

 
Try it
New Job Status from the Lamini API

Emit new events with the status of a training job. See the documentation

 
Try it
Create Fine-Tune Job with the Lamini API

Create a fine-tuning job with a dataset. See the documentation

 
Try it
Evaluate Job with the Lamini API

Evaluate a fine-tuning job by job ID. See the documentation

 
Try it
Generate Completion with the Lamini API

Generate completions using a Lamini model. See the documentation

 
Try it
Get Batch Completions with the Lamini API

Retrieve the results of a batch completion request from Lamini. See the documentation

 
Try it
Upload Dataset with the Lamini API

Upload a dataset to Lamini for training.

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

Overview of Memberful

The Memberful API lets you handle memberships and subscriptions with precision. Using Pipedream, you can automate tasks around Memberful's robust features, like syncing member data, managing subscriptions, or triggering events based on membership changes. Pipedream's serverless platform turns these tasks into workflows you can build, run, and observe with ease.

Connect Memberful

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    memberful: {
      type: "app",
      app: "memberful",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      method: "POST",
      url: `https://${this.memberful.$auth.site}.memberful.com/api/graphql`,
      headers: {
        Authorization: `Bearer ${this.memberful.$auth.api_key}`,
        "Content-Type": `application/json`,
      },
      params: {
        query: `{
  members(first: 10) {
    totalCount
    pageInfo {
      endCursor
      hasNextPage
    }
    edges {
      node {
        id
        email
        fullName
        subscriptions {
          id
          plan {
            id
            name
            priceCents
          }
        }
      }
    }
  }
}`,
      },
    })
  },
})

Connect Lamini

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: {
    lamini: {
      type: "app",
      app: "lamini",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.lamini.ai/v2/classifier/projects`,
      headers: {
        Authorization: `Bearer ${this.lamini.$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