Loomio

Where collaborative organizations share, discuss and decide. Loomio offers a workspace for conversation, sharing information and opinions, making proposals, deciding actions and achieving outcomes. Loomio is the heartbeat and living record of your organization.

Go to site
Explore
/
Apps
/
Loomio

Loomio API Integrations

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

Overview

Loomio is a tool that helps groups make better decisions together. With Loomio, you can easily and efficiently hold discussions, make decisions, and take action as a group.

Here are some examples of what you can build using the Loomio API:

  • A tool for group decision-making
  • A forum for group discussion
  • A decision-making tool for teams
  • A tool for collaborative action planning
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    loomio: {
      type: "app",
      app: "loomio",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.loomio.org/api/b1/memberships`,
      params: {
        api_key: `${this.loomio.$auth.api_key}`,
      },
    })
  },
})

Authentication

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

To connect Loomio with Pipedream, create an API key in Loomio and paste it below.