What do you want to automate

with Adalo and Leexi?

Prompt, edit and deploy AI agents that connect to Adalo, Leexi 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 Call with Leexi API on New Record from Adalo API
Adalo + Leexi
 
Try it
Create Presigned Recording URL with Leexi API on New Record from Adalo API
Adalo + Leexi
 
Try it
Create Record with Adalo API on New Call Created from Leexi API
Leexi + Adalo
 
Try it
Get Call with Leexi API on New Record from Adalo API
Adalo + Leexi
 
Try it
Get Records with Adalo API on New Call Created from Leexi API
Leexi + Adalo
 
Try it
New Record from the Adalo API

Emit new event when is created a record.

 
Try it
New Call Created from the Leexi API

Emit new event when a new call is created. See the documentation

 
Try it
Create Record with the Adalo API

Create a new record. See docs here

 
Try it
Create Call with the Leexi API

Create a new call in Leexi. See the documentation

 
Try it
Get Records with the Adalo API

Get all records from a collection. See docs here

 
Try it
Create Presigned Recording URL with the Leexi API

Creates a presigned URL for uploading a call recording. See the documentation

 
Try it
Get Call with the Leexi API

Get details of a call by its ID. See the documentation

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

Overview of Adalo

The Adalo API allows for the creation and manipulation of database records in your Adalo apps. Automating workflows with Pipedream can enhance your Adalo app's functionality, trigger custom actions based on app events, sync data across platforms, or notify users and team members about important updates. By leveraging Pipedream's ability to connect with hundreds of other apps, you can create sophisticated, multi-step workflows that respond dynamically to your Adalo app's data and events.

Connect Adalo

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: {
    adalo: {
      type: "app",
      app: "adalo",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.adalo.com/v0/apps/${this.adalo.$auth.appId}/collections/${this.adalo.$auth.collection_id}`,
      headers: {
        Authorization: `Bearer ${this.adalo.$auth.api_key}`,
        "Content-Type": `application/json`,
      },
    })
  },
})

Connect Leexi

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: {
    leexi: {
      type: "app",
      app: "leexi",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://public-api.leexi.ai/v1/users`,
      auth: {
        username: `${this.leexi.$auth.api_key_id}`,
        password: `${this.leexi.$auth.api_key_secret}`,
      },
    })
  },
})

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