Formcarry allows you to collect submissions from your own HTML form, without any back-end code.
With Formcarry, you can easily and quickly create powerful web forms without
having to write any code. Just enter your form information into the Formcarry
interface and our powerful API will take care of the rest.
Here are some examples of what you can build with Formcarry:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
formcarry: {
type: "app",
app: "formcarry",
},
form_id: {
type: "string",
label: "Form ID",
description: `Paste the ID of the form you'd like to access.`
}
},
async run({steps, $}) {
return await axios($, {
url: `https://formcarry.com/api/form/${this.form_id}/submissions`,
params: {
api_key: `${this.formcarry.$auth.api_key}`,
},
})
},
})
The Filter API is a great way to build powerful workflows that can manipulate
and transform data. Here are some examples of what you can build using the
Filter API:
export default defineComponent({
async run({ steps, $ }) {
let condition = false
if (condition == false) {
$.flow.exit("Ending workflow early because the condition is false")
} else {
$.export("$summary", "Continuing workflow, since condition for ending was not met.")
}
},
})