The PlanSo Forms API allows for the automation of form-related tasks and the seamless integration of form data into various applications or workflows. On Pipedream, this translates to crafting serverless workflows that trigger upon form submissions, manipulating and routing the data to other services for analysis, storage, or further action. With this API, you can trigger events, process form inputs, and integrate with countless other apps in the Pipedream ecosystem to streamline processes and enhance data management.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
planso_forms: {
type: "app",
app: "planso_forms",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.planso_forms.$auth.company_token}.planso.de/api/v2/methods_table_list_tables`,
headers: {
"Apikey": `${this.planso_forms.$auth.api_key}`,
"Apipass": `${this.planso_forms.$auth.api_password}`,
},
})
},
})
Auto-Respond to Form Submissions: When a new form submission is detected by PlanSo Forms, use Pipedream to send an automated email response to the submitter. Integrate with email services like SendGrid or Gmail to personalize and deliver the message promptly.
Sync Form Data with a CRM: Integrate PlanSo Forms with a CRM service like Salesforce or HubSpot. When a form is submitted, Pipedream can parse the data and create or update contact records in the CRM, ensuring your sales or customer service teams have the latest information.
Analyze and Visualize Form Data: On form submission, collect the data and feed it into a Google Sheets spreadsheet. Use this as a basis for creating dashboards or reports in data visualization tools like Google Data Studio, helping you gain insights into your form data trends over time.
PlanSo Forms uses API keys for authentication. When you connect your PlanSo Forms account, Pipedream securely stores the keys so you can easily authenticate to PlanSo Forms APIs in both code and no-code steps.
To retrieve your API credentials,
Your company token is 1234
if your PlanSo Forms URL is https://1234.planso.de/app#