← HTTP / Webhook + Customer.io integrations

Send Event To with Customer.io API on New Requests (Payload Only) from HTTP / Webhook API

Pipedream makes it easy to connect APIs for Customer.io, HTTP / Webhook and 1000+ other apps remarkably fast.

Trigger workflow on
New Requests (Payload Only) from the HTTP / Webhook API
Next, do this
Send Event To with the Customer.io API
No credit card required
Into to Pipedream
Watch us build a workflow
Watch us build a workflow
7 min
Watch now ➜

Trusted by 500,000+ developers from startups to Fortune 500 companies

Adyen logo
Brex logo
Carta logo
Checkr logo
Chameleon logo
DevRev logo
LinkedIn logo
Netflix logo
New Relic logo
OnDeck logo
Replicated logo
Scale AI logo
Teamwork logo
Warner Bros. logo
Xendit logo

Developers Pipedream

Getting Started

This integration creates a workflow with a HTTP / Webhook trigger and Customer.io action. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Select this integration
  2. Configure the New Requests (Payload Only) trigger
    1. Connect your HTTP / Webhook account
  3. Configure the Send Event To action
    1. Connect your Customer.io account
    2. Configure Customer ID
    3. Configure Event Name
    4. Optional- Configure Data
  4. Deploy the workflow
  5. Send a test event to validate your setup
  6. Turn on the trigger

Details

This integration uses pre-built, source-available components from Pipedream's GitHub repo. These components are developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Trigger

Description:Get a URL and emit the HTTP body as an event on every request
Version:0.1.1
Key:http-new-requests-payload-only

Trigger Code

import http from "../../http.app.mjs";

// Core HTTP component
// Returns a 200 OK response, emits the HTTP payload as an event
export default {
  key: "http-new-requests-payload-only",
  name: "New Requests (Payload Only)",
  // eslint-disable-next-line
  description: "Get a URL and emit the HTTP body as an event on every request",
  version: "0.1.1",
  type: "source",
  props: {
    // eslint-disable-next-line
    httpInterface: {
      type: "$.interface.http",
      customResponse: true,
    },
    http,
  },
  async run(event) {
    const { body } = event;
    this.httpInterface.respond({
      status: 200,
      body,
    });
    // Emit the HTTP payload
    this.$emit({
      body,
    });
  },
};

Trigger Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
N/AhttpInterface$.interface.httpThis component uses $.interface.http to generate a unique URL when the component is first instantiated. Each request to the URL will trigger the run() method of the component.
HTTP / WebhookhttpappThis component uses the HTTP / Webhook app.

Trigger Authentication

The HTTP / Webhook API does not require authentication.

About HTTP / Webhook

Get a unique URL where you can send HTTP or webhook requests

Action

Description:Sends an event to Customer.io. [See the docs here](https://customer.io/docs/api/#operation/track)
Version:0.2.0
Key:customer_io-send-event-to

Customer.io Overview

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

Action Code

import app from "../../customer_io.app.mjs";

export default {
  key: "customer_io-send-event-to",
  name: "Send Event To",
  description: "Sends an event to Customer.io. [See the docs here](https://customer.io/docs/api/#operation/track)",
  version: "0.2.0",
  type: "action",
  props: {
    app,
    customerId: {
      propDefinition: [
        app,
        "customerId",
      ],
    },
    eventName: {
      type: "string",
      label: "Event Name",
      description: "The name of the event you want to track.",
    },
    data: {
      type: "object",
      label: "Data",
      description: "Custom attributes to define the event.",
      optional: true,
    },
  },
  async run({ $ }) {
    const data = {
      name: this.eventName,
      data: this.data,
    };
    await this.app.sendEventTo(this.customerId, data, $);
    $.export("$summary", "Successfully sent event");
  },
};

Action Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI.

LabelPropTypeDescription
Customer.ioappappThis component uses the Customer.io app.
Customer IDcustomerIdstring

The unique identifier for the customer.

Event NameeventNamestring

The name of the event you want to track.

Datadataobject

Custom attributes to define the event.

Action Authentication

Customer.io uses API keys for authentication. When you connect your Customer.io account, Pipedream securely stores the keys so you can easily authenticate to Customer.io APIs in both code and no-code steps.

To connect your Customer.io account to Pipedream, sign in to your Customer.io account and navigate to Data & Integrations > Integrations > API, then copy your site_id and api_key fields and paste them below.

About Customer.io

Send Automated Messages. Deliver Results.

More Ways to Connect Customer.io + HTTP / Webhook

Create or Update Customer with Customer.io API on New Requests (Payload Only) 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
Send Event To Customer io with Customer.io API on New Requests (Payload Only) 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
POST /customers/{customer_id}/events with Customer.io API on New Requests 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
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 GET Request with the HTTP / Webhook API

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

 
Try it
Send POST Request with the HTTP / Webhook API

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

 
Try it
Send PUT Request with the HTTP / Webhook API

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

 
Try it
Return HTTP Response with the HTTP / Webhook API

Use with an HTTP Source that uses Return a custom response from your workflow as its HTTP Response

 
Try it