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`,
},
})
},
})
Aidaform uses API keys for authentication. When you connect your Aidaform account, Pipedream securely stores the keys so you can easily authenticate to Aidaform APIs in both code and no-code steps.
Aidaform uses Tokens to authenticate users. You can find the API key in the My Account
-> Settings
section.
See documentation.