import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
flowla: {
type: "app",
app: "flowla",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.flowla.com/api/v1/users`,
headers: {
"x-flowla-api-key": `${this.flowla.$auth.api_key}`,
"accept": `application/json`,
},
})
},
})
Emit new event when a flow is updated in Flowla. See the documentation
Emit new event when a new flow is created in Flowla. See the documentation
Create a new flow in Flowla from a pre-existing template. See the documentation
Flowla uses API keys for authentication. When you connect your Flowla account, Pipedream securely stores the keys so you can easily authenticate to Flowla APIs in both code and no-code steps.