Deploy a powerful, easy-to-configure form backend without writing a single line of server side code.
Go to siteThe Basin API provides a powerful platform for automating form submissions, gathering feedback, and conducting surveys with ease. By leveraging the Pipedream's serverless execution model, you can trigger workflows in response to new form submissions, process and analyze the data, and take action in countless other apps. Whether you're routing form data to a CRM, generating support tickets, or synthesizing customer insights, Basin on Pipedream simplifies these tasks with its event-driven architecture and seamless integrations.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
basin: {
type: "app",
app: "basin",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://usebasin.com/api/v1/submissions`,
params: {
api_token: `${this.basin.$auth.api_key}`,
},
})
},
})
Automated Customer Feedback Analysis: When a new form submission occurs in Basin, trigger a Pipedream workflow that sends the data to a sentiment analysis service like MonkeyLearn. The analyzed sentiment can then be logged to a Google Sheet for aggregate reporting, providing real-time insights into customer satisfaction.
Support Ticket Creation: Use Basin to capture support requests and auto-generate tickets in a tool like Zendesk or Jira using Pipedream workflows. Each form submission can create a new ticket, with the details from the form mapped to the corresponding fields in the ticketing system, streamlining the support process.
Email Campaign Enrollment: For each new sign-up through a Basin form, trigger a Pipedream workflow to add the contact to an email marketing list in Mailchimp. The workflow can further segment the contacts based on the responses, enabling targeted email campaigns that resonate with specific audience segments.
Basin uses API keys for authentication. When you connect your Basin account, Pipedream securely stores the keys so you can easily authenticate to Basin APIs in both code and no-code steps.
Go to the Dashboard for your form and then select the 'Integrations' tab. Each form has it's own API key.