Online Form Creator: Stylish, Innovative, Easy
Adds a contact to a specific static list. See the documentation
Create or update a batch of contacts by its ID or email. See the documentation
Create a WhatsApp, LinkedIn, or SMS message. See the documentation
Aidaform is a service that lets you craft forms for a variety of purposes, from surveys to job applications. By leveraging the Aidaform API on Pipedream, you can automate interactions with your forms and the data they collect. This means instant processes for form responses, seamless data integration with other apps, and dynamic form management. With Pipedream's serverless platform, you can create workflows that trigger actions in other services like CRMs, email marketing tools, or databases whenever a new form submission is received.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
aidaform: {
type: "app",
app: "aidaform",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.aidaform.com/v1/forms`,
headers: {
Authorization: `Bearer ${this.aidaform.$auth.api_key}`,
},
params: {
accept: `application/json`,
},
})
},
})
The HubSpot API enables developers to integrate into HubSpots CRM, CMS, Conversations, and other features. It allows for automated management of contacts, companies, deals, and marketing campaigns, enabling custom workflows, data synchronization, and task automation. This streamlines operations and boosts customer engagement, with real-time updates for rapid response to market changes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hubspot: {
type: "app",
app: "hubspot",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.hubapi.com/integrations/v1/me`,
headers: {
Authorization: `Bearer ${this.hubspot.$auth.oauth_access_token}`,
},
})
},
})