Customer.io

Send Automated Messages. Deliver Results.

Integrate the Customer.io API with the HTTP / Webhook API

Setup the Customer.io API trigger to run a workflow which integrates with the HTTP / Webhook API. Pipedream's integration platform allows you to integrate Customer.io and HTTP / Webhook remarkably fast. Free for developers.

Add Customers to Segment with Customer.io API on New Requests from HTTP / Webhook API
HTTP / Webhook + Customer.io
 
Try it
Create or Update Customer with Customer.io API on New Requests from HTTP / Webhook API
HTTP / Webhook + Customer.io
 
Try it
POST /customers/{customer_id}/events with Customer.io API on New Requests from HTTP / Webhook API
HTTP / Webhook + Customer.io
 
Try it
Send Event To Customer io with Customer.io API on New Requests from HTTP / Webhook API
HTTP / Webhook + Customer.io
 
Try it
Add Customers to Segment with Customer.io API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Customer.io
 
Try it
New Requests from the HTTP / Webhook API

Get a URL and emit the full HTTP event on every request (including headers and query parameters). You can also configure the HTTP response code, body, and more.

 
Try it
New Requests (Payload Only) from the HTTP / Webhook API

Get a URL and emit the HTTP body as an event on every request

 
Try it
New event when the content of the URL changes. from the HTTP / Webhook API

Emit new event when the content of the URL changes.

 
Try it
Add Customers to Segment with the Customer.io API

Add people to a manual segment by ID. You are limited to 1000 customer IDs per request. See the docs here

 
Try it
Create or Update Customer with the Customer.io API

Creates or update a customer. See the docs here

 
Try it
Send Event To with the Customer.io API

Sends an event to Customer.io. See the docs here

 
Try it
Send any HTTP Request with the HTTP / Webhook API

Send an HTTP request using any method and URL. Optionally configure query string parameters, headers, and basic auth.

 
Try it
Send Event To Customer io with the Customer.io API

Sends, tracks a customer event to Customer io. See the docs here

 
Try it

Overview of Customer.io

With the Customer.io API, you can build a variety of applications and
integrations to help you better engage with your customers. Some examples of
what you can build include:

  • A customer facing application that displays customer information and account
    activity
  • An integration with your CRM system to keep customer data up-to-date
  • A system to segment your customers and send them targeted messages
  • An application to trigger events based on customer behavior
  • A tool to track customer churn and identify at-risk customers

Connect Customer.io

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: {
    customer_io: {
      type: "app",
      app: "customer_io",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://track.customer.io/api/v1/accounts/region`,
      auth: {
        username: `${this.customer_io.$auth.site_id}`,
        password: `${this.customer_io.$auth.api_key}`,
      },
    })
  },
})

Connect HTTP / Webhook

1
2
3
4
5
6
7
8
9
10
11
12
13
// To use any npm package on Pipedream, just import it
import axios from "axios"

export default defineComponent({
  async run({ steps, $ }) {
    const { data } = await axios({
      method: "GET",
      url: "https://pokeapi.co/api/v2/pokemon/charizard",
    })
    return data.species
  },
})

Community Posts

A Look at Pipedream
A Look at Pipedream
I'm going to build a workflow that will search Twitter every hour for a keyword. It will take the results, format them nicely, and then email it.
Building a Traffic-Based Workflow in Pipedream
Building a Traffic-Based Workflow in Pipedream
Normally I don't like to blog about stuff that isn't generally available to all, but as it will be available sometime soon, I decided to go ahead anyway. And I built something really cool I want to share so that's another reason to talk about this now!