Outreach

Close Deals Faster in the Remote Sales World

Integrate the Outreach API with the Formatting API

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

[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 Outreach

The Outreach API is a powerful way to harness the power of Outreach, the
leading platform for sales engagement and orchestration. With the Outreach API,
you can unlock the full potential of Outreach, allowing you to build and
integrate custom apps, automate workflows, and even extend your sales
activities beyond the core platform. With Outreach, you'll have the ability to
develop the exact tools that your organization needs to achieve the best
results from your sales engagements.

Below are just a few of the examples of what you can do with the Outreach API:

  • Automatically sync data between your CRM and Outreach
  • Build custom solutions to manage and monitor outreach sequences
  • Import and send large sets of templates and emails
  • Set up automated workflows to streamline actions like follow-ups and feedback
    loops
  • Create and upload account-based marketing campaigns
  • Customize emails with dynamic, personalized content
  • Monitor sales performance with detailed analytics
  • Segment target accounts and build hyper-targeted outreach campaigns
  • Create custom reports to capture key performance insights
  • Monitor sentiment across your outreach and sales channels
  • Integrate outreach with communication channels like Slack
  • Automate activities to increase sales efficiency
  • Create custom API endpoints to extend the functionality of Outreach

Connect Outreach

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    outreach: {
      type: "app",
      app: "outreach",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.outreach.io/api/v2/accounts`,
      headers: {
        Authorization: `Bearer ${this.outreach.$auth.oauth_access_token}`,
        "Content-Type": `application/vnd.api+json`,
      },
    })
  },
})

Connect Formatting

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