Formcarry allows you to collect submissions from your own HTML form, without any back-end code.
Emit an event for each new or modified record in a table
Emit an event for each new or modified record in a view
Emits an event each time a record is added, updated, or deleted in an Airtable table. Supports tables up to 10,000 records
Create one or more records in a table by passing an array of objects containing field names and values as key/value pairs.
Retrieve records from a table with automatic pagination. Optionally sort and filter results.
Retrieve records in a view with automatic pagination. Optionally sort and filter results.
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}`,
},
})
},
})
Using the Airtable API, you can build applications that can:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airtable: {
type: "app",
app: "airtable",
},
baseId: {
type: "$.airtable.baseId",
appProp: "airtable",
},
tableId: {
type: "$.airtable.tableId",
baseIdProp: "baseId",
},
},
async run({steps, $}) {
return await axios($, {
url: `https://api.airtable.com/v0/${this.baseId}/${this.tableId}`,
headers: {
Authorization: `Bearer ${this.airtable.$auth.api_key}`,
"accept": `application/json`,
},
})
}
})