Adalo

No code app development platform

Integrate the Adalo API with the Formatting API

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

[Data] Convert JSON to String with Formatting API on New Record from Adalo API
Adalo + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Record from Adalo API
Adalo + Formatting
 
Try it
[Date/Time] Add/Subtract Time with Formatting API on New Record from Adalo API
Adalo + Formatting
 
Try it
[Date/Time] Compare Dates with Formatting API on New Record from Adalo API
Adalo + Formatting
 
Try it
[Date/Time] Format with Formatting API on New Record from Adalo API
Adalo + Formatting
 
Try it
New Record from the Adalo API

Emit new event when is created a record.

 
Try it
Create Record with the Adalo API

Create a new record. See docs here

 
Try it
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
Get Records with the Adalo API

Get all records from a collection. See docs here

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it

Overview of Adalo

Some examples of what you can build with the Adalo API:

  • Todo List
  • Pinterest Board
  • Shopping List
  • Weather App
  • Basic Calculator
  • Flashcards
  • Expense Tracker
  • Photo Gallery

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/[APP_ID]/collections/[COLLECTION_ID]`,
      headers: {
        Authorization: `Bearer ${this.adalo.$auth.api_key}`,
        "Content-Type": `application/json`,
      },
    })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})