Form.taxi provides a simple and secure way to handle form submissions without writing any server-side code. With Form.taxi, you can quickly connect your HTML forms and deliver submissions or integrate them into your existing workflows. By using Pipedream, you can automate actions in response to new form submissions—such as storing data, sending notifications, or connecting with third-party apps—making it easy to streamline processes and boost productivity.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
form_taxi: {
type: "app",
app: "form_taxi",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://form.taxi/api/v1/form/submissions/${this.form_taxi.$auth.form_code}`,
headers: {
"api-key": `${this.form_taxi.$auth.api_key}`,
},
})
},
})
Emit new event when Form.taxi receives a new form submission. About Form.taxi
If you have issues with this integration, please reach out at support@form.taxi
Form.taxi uses API keys for authentication. When you connect your Form.taxi account, Pipedream securely stores the keys so you can easily authenticate to Form.taxi APIs in both code and no-code steps.