The Outgrow API offers a toolkit to integrate interactive content like quizzes, polls, and calculators with your apps and workflows. Using Pipedream, you can automate actions based on events in Outgrow, such as new lead captures or quiz completions. This enables seamless data flows between Outgrow and CRM platforms, marketing tools, databases, and more. With Pipedream's serverless platform, you can trigger workflows with Outgrow events, manipulate the data, and connect to thousands of other apps without writing complex code.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
outgrow: {
type: "app",
app: "outgrow",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.outgrow.co/api/v1/get_cal/${this.outgrow.$auth.api_key}`,
})
},
})
Lead Nurturing Automation: When a user completes a quiz and turns into a lead, automagically add their details to a CRM like Salesforce. Then, trigger a personalized email sequence in a tool like Mailchimp to nurture the lead through the sales funnel.
Real-Time Notifications: Set up instant Slack or SMS notifications to your sales or customer service team whenever a high-value lead fills out an Outgrow calculator. This enables quick follow-up, potentially increasing conversion rates.
Data Synchronization: After a user engages with a poll or survey, sync their responses to a Google Sheet or Airtable base for deeper analysis. Use this data to inform product development or content creation, ensuring your offerings align with customer preferences.
Outgrow uses API keys for authentication. When you connect your Outgrow account, Pipedream securely stores the keys so you can easily authenticate to Outgrow APIs in both code and no-code steps.
You can create an API Key in Account Settings by clicking on your name (alias) on the top right hand side of the Outgrow Dashboard interface. Then, select Billing & Settings from the drop-down menu and look for the API Key option on the left sidebar.
For subdomain, if your URL is https://xyz.outgrow.co
then your subdomain is xyz
.