All-in-one solution for form creation, submission management, and data integration.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
byteforms: {
type: "app",
app: "byteforms",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.forms.bytesuite.io/api/form`,
headers: {
"Authorization": `${this.byteforms.$auth.api_key}`,
},
})
},
})
Emit new event when a user submission to a form occurs. See the documentation
ByteForms uses API keys for authentication. When you connect your ByteForms account, Pipedream securely stores the keys so you can easily authenticate to ByteForms APIs in both code and no-code steps.