Online form builder for business
Get a URL and emit the full HTTP event on every request (including headers and query parameters). You can also configure the HTTP response code, body, and more.
Get a URL and emit the HTTP body as an event on every request
Emit new event when the content of the URL changes.
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
Send an HTTP request using any method and URL. Optionally configure query string parameters, headers, and basic auth.
Gets a list of all submissions for all forms on the account See the docs here
Send an HTTP GET request to any URL. Optionally configure query string parameters, headers and basic auth.
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}`,
},
})
},
})
// To use any npm package on Pipedream, just import it
import axios from "axios"
export default defineComponent({
async run({ steps, $ }) {
const { data } = await axios({
method: "GET",
url: "https://pokeapi.co/api/v2/pokemon/charizard",
})
return data.species
},
})