Outgrow

Interactive Content Platform

Integrate the Outgrow API with the Formatting API

Setup the Outgrow API trigger to run a workflow which integrates with the Formatting API. Pipedream's integration platform allows you to integrate Outgrow and Formatting remarkably fast. Free for developers.

[Data] Convert JSON to String with Formatting API on New Lead from Outgrow API
Outgrow + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Lead from Outgrow API
Outgrow + Formatting
 
Try it
[Date/Time] Add/Subtract Time with Formatting API on New Lead from Outgrow API
Outgrow + Formatting
 
Try it
[Date/Time] Compare Dates with Formatting API on New Lead from Outgrow API
Outgrow + Formatting
 
Try it
[Date/Time] Format with Formatting API on New Lead from Outgrow API
Outgrow + Formatting
 
Try it
New Lead from the Outgrow API

Emit new event when a new lead is created.

 
Try it
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it
[Date/Time] Format with the Formatting API

Format a date string to another date string

 
Try it

Overview of Outgrow

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.

Connect Outgrow

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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}`,
    })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})