Adalo

No code app development platform

Integrate the Adalo API with the Go API

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

Run Go Code with Go API on New Record from Adalo API
Adalo + Go
 
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
Run Go Code with the Go API

Run any Go code and use any Go package available with a simple import. Refer to the Pipedream Go docs to learn more.

 
Try it
Get Records with the Adalo API

Get all records from a collection. See docs here

 
Try it
Update Record with the Adalo API

Update a record. See docs here

 
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 Go

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package main

import (
	"fmt"

	pd "github.com/PipedreamHQ/pipedream-go"
)

func main() {
	// Access previous step data using pd.Steps
	fmt.Println(pd.Steps)

	// Export data using pd.Export
	data := make(map[string]interface{})
	data["name"] = "Luke"
	pd.Export("data", data)
}