Schedule

Trigger workflows on an interval or cron schedule.

Integrate the Schedule API with the Intercom API

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

Create Note with Intercom API on Daily schedule from Schedule API
Schedule + Intercom
 
Try it
Create Note with Intercom API on Monthly schedule from Schedule API
Schedule + Intercom
 
Try it
Create Note with Intercom API on Schedule based on a custom interval from Schedule API
Schedule + Intercom
 
Try it
Create Note with Intercom API on Weekly schedule from Schedule API
Schedule + Intercom
 
Try it
Send Incoming Message with Intercom API on Daily schedule from Schedule API
Schedule + Intercom
 
Try it
Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

 
Try it
New Companies from the Intercom API

Emit new event each time a new company is added.

 
Try it
Daily schedule from the Schedule API

Trigger your workflow every day.

 
Try it
New Reply From Admin from the Intercom API

Emit new event each time an admin replies to a conversation.

 
Try it
Monthly Schedule from the Schedule API

Trigger your workflow on one or more days each month at a specific time (with timezone support).

 
Try it
Create Note with the Intercom API

Creates a note for a specific user. See the docs here

 
Try it
Send Incoming Message with the Intercom API

Send a message from a user into your Intercom app. See the docs here

 
Try it

Overview of Schedule

The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.

Overview of Intercom

The Intercom API offers rich capabilities for enhancing customer communication and support workflows. By leveraging this API on Pipedream, you can automate tasks, sync customer data across platforms, and create personalized interactions. Whether you are managing user segments, sending targeted messages, or updating customer profiles, the Intercom API's robust set of endpoints allows for intricate and useful automations within your business processes.

Connect Intercom

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: {
    intercom: {
      type: "app",
      app: "intercom",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.intercom.io/admins`,
      headers: {
        Authorization: `Bearer ${this.intercom.$auth.oauth_access_token}`,
        "Accept": `application/json`,
      },
    })
  },
})