Digitize your forms and workflows using our cloud software, so you can love what you do! The #1 no code platform for desktop & mobile
Go to siteThe Forms On Fire API allows you to automate interactions with your mobile forms. Using it with Pipedream, you can trigger workflows based on form submissions, update or retrieve data from forms, and automate interactions with other apps. It's useful for extending the capabilities of your forms, integrating with third-party services, and streamlining data processes without manual intervention.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
forms_on_fire: {
type: "app",
app: "forms_on_fire",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://secure.formsonfire.com/api/v2/user`,
params: {
format: `json`,
CompanyId: `${this.forms_on_fire.$auth.company_id}`,
Integrationkey: `${this.forms_on_fire.$auth.integration_key}`,
Email: `[replace_with_user_email]`,
},
})
},
})
Automate Data Entry to a Database: When a form is submitted via Forms On Fire, use Pipedream to capture the data and insert it into a database like PostgreSQL or MySQL. This workflow can reduce manual data entry errors and save time.
Sync Form Submissions with CRM: Each time a form is completed, the workflow could trigger to create or update a contact in a CRM such as Salesforce or HubSpot. This ensures your customer information is always current and can trigger other CRM workflows.
Send Custom Email Notifications: Configure a workflow to send a custom email notification via SendGrid or Gmail when a form is submitted. This can inform team members about new entries or provide customers with a confirmation receipt.
Forms On Fire uses API keys for authentication. When you connect your Forms On Fire account, Pipedream securely stores the keys so you can easily authenticate to Forms On Fire APIs in both code and no-code steps.
To retrieve your Company ID and Integration Key,