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 siteLoomio 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:
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}`,
},
})
},
})
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.