Online form builder for business
Gets number of form submissions received this month. Also, get number of SSL form submissions, payment form submissions and upload space used by user See the docs here
Gets a list of all submissions for all forms on the account See the docs here
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}`,
},
})
},
})
Using the Paymo API, you can build a range of applications that help your
business run smoother, faster, and more cost-effectively. With the Paymo API,
you can:
Examples of applications you can build with the Paymo API include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
paymo: {
type: "app",
app: "paymo",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.paymoapp.com/api/me`,
auth: {
username: `${this.paymo.$auth.api_key}`,
password: `random`,
},
})
},
})