FunnelCockpit is an all-in-one platform for online marketing. It offers all the necessary functions and tools to build your own online business.
Go to siteThe FunnelCockpit API enables the automation of marketing funnel tasks, such as managing contacts, sending out emails, or updating campaigns. With Pipedream, you can harness this API to create powerful workflows that trigger on various events, manage data across different platforms, and streamline your digital marketing efforts.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
funnelcockpit: {
type: "app",
app: "funnelcockpit",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.funnelcockpit.com/me`,
headers: {
"Authorization": `${this.funnelcockpit.$auth.api_key}`,
},
})
},
})
Sync Contacts to CRM: Automatically add new contacts from your FunnelCockpit campaigns into a CRM like Salesforce or HubSpot. When a contact is created in FunnelCockpit, the workflow is triggered, creating or updating the contact in your CRM with the latest information.
Email Campaign Trigger: Utilize the FunnelCockpit API to send targeted emails through an email service provider like SendGrid or Mailchimp. Set up a Pipedream workflow that triggers an email campaign based on specific user behaviors or milestones reached within your FunnelCockpit funnels.
Analytics Reporting: Generate reports by integrating FunnelCockpit with Google Sheets or Data Studio. When a new sale or conversion is recorded in FunnelCockpit, Pipedream can automate the process of logging this data into your chosen analytics tool, providing real-time insights and data visualization.
FunnelCockpit uses API keys for authentication. When you connect your FunnelCockpit account, Pipedream securely stores the keys so you can easily authenticate to FunnelCockpit APIs in both code and no-code steps.
Sign in and copy your API Key from the API Settings.