Formcarry allows you to collect submissions from your own HTML form, without any back-end code.
Go to siteFormcarry is an API for form processing, empowering developers to handle form submissions without the need for server-side code. With Formcarry, you can effortlessly collect, process, and integrate form data with various services. Using Pipedream, you can create serverless workflows that react to form submissions by triggering actions within Formcarry or in other apps, streamlining data collection and automation processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
formcarry: {
type: "app",
app: "formcarry",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://formcarry.com/api/auth`,
params: {
api_key: `${this.formcarry.$auth.api_key}`,
},
})
},
})
Auto-Respond to Form Submissions: Craft a Pipedream workflow that listens for new Formcarry submissions. Use this to trigger an automated email response, confirming receipt to the user with SendGrid. You can personalize the email response based on the form's content for a tailored experience.
Form Submission Data to Google Sheets: On receiving a new form submission via Formcarry, use Pipedream to add the data to a Google Sheet. This is ideal for lead tracking, survey responses, or managing registration details. It's a great way to keep all submissions organized and easily accessible for further analysis or team sharing.
Slack Notification for Support Requests: Set up a Pipedream workflow to send a Slack message to a support channel when a new support request is submitted through a Formcarry form. Include details from the submission in the message so your team can quickly respond to inquiries or issues.
Emit new event when the specified form receives a new submission. See the documentation
Formcarry uses API keys for authentication. When you connect your Formcarry account, Pipedream securely stores the keys so you can easily authenticate to Formcarry APIs in both code and no-code steps.