Online Form Creator: Stylish, Innovative, Easy
Some things you can build using the Aidaform API include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
aidaform: {
type: "app",
app: "aidaform",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.aidaform.com/v1/forms`,
headers: {
Authorization: `Bearer ${this.aidaform.$auth.api_key}`,
},
params: {
accept: `application/json`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})