Formaloo is a powerful no-code collaboration platform that enables you to build custom business applications, internal tools and customer engagement tools fast & code-free!
Go to siteThe Formaloo API lets you interact with your forms and data on Formaloo. You can create new forms, fetch responses, analyze submissions, and more, right within Pipedream. Pipedream's serverless platform facilitates the automation of these tasks, enabling you to integrate Formaloo with hundreds of other services to streamline workflows, analyze data, and synchronize across platforms.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
formaloo: {
type: "app",
app: "formaloo",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.formaloo.net/v2.0/profile/`,
headers: {
"Authorization": `JWT ${this.formaloo.$auth.oauth_access_token}`,
"x-api-key": `${this.formaloo.$auth.api_key}`,
},
})
},
})
Automate Response Collection: Use Pipedream to trigger a workflow every time a new form submission is received on Formaloo. Capture the data, process it, and store it in a database like PostgreSQL or send it to Google Sheets for further analysis.
Dynamic Form Creation: With the Formaloo API on Pipedream, create workflows that dynamically generate new forms based on events from other apps, such as Trello or Asana. When a new project is created in your project management tool, trigger a workflow that creates a corresponding feedback form in Formaloo.
Form Submission Notifications: Set up a Pipedream workflow that sends a notification through email, Slack, or Discord whenever a form is submitted. This can keep your team instantly informed about new entries, customer feedback, or survey responses, ensuring timely responses and engagement.
Create a new customer on the current business. See the documentation
Formaloo uses OAuth authentication. When you connect your Formaloo account, Pipedream will open a popup window where you can sign into Formaloo and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Formaloo API.
Pipedream requests the following authorization scopes when you connect your account:
POST
https://api.formaloo.net/v2.0/oauth2/authorization-token/
Authorization: Basic {{custom_fields.secret_key}}
grant_type=client_credentials
POST
https://api.formaloo.net/v2.0/oauth2/authorization-token/
content-type: application/x-www-form-urlencoded
accept: application/json
Authorization: Basic {{custom_fields.secret_key}}
grant_type=client_credentials
POST
https://api.formaloo.net/v2.0/oauth2/authorization-token/
content-type: application/x-www-form-urlencoded
accept: application/json
Authorization: Basic {{custom_fields.secret_key}}
grant_type=client_credentials