Online form builder for business
Using the Jotform API, you can easily add forms to your website or application.
You can also use the Jotform API to manage your form submissions, gather
insights from your form data, and more.
Here are some examples of what you can build using the Jotform API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
jotform: {
type: "app",
app: "jotform",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.jotform.$auth.region}.jotform.com/user`,
params: {
apiKey: `${this.jotform.$auth.api_key}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})