customerio

package module
v1.0.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 10, 2015 License: MIT Imports: 7 Imported by: 0

README

Customerio

A golang client for the Customer.io event API. Tested with Go1.4

Godoc here: https://godoc.org/github.com/customerio/go-customerio

Installation

Add this line to your application's imports:

import (
    // ...
    "github.com/customerio/go-customerio"
)

And then execute:

go get

Or install it yourself:

$ go get "github.com/customerio/go-customerio"

Usage

Before we get started: API client vs. JavaScript snippet

It's helpful to know that everything below can also be accomplished through the Customer.io JavaScript snippet.

In many cases, using the JavaScript snippet will be easier to integrate with your app, but there are several reasons why using the API client is useful:

  • You're not planning on triggering emails based on how customers interact with your website (e.g. users who haven't visited the site in X days)
  • You're using the javascript snippet, but have a few events you'd like to send from your backend system. They will work well together!
  • You'd rather not have another javascript snippet slowing down your frontend. Our snippet is asynchronous (doesn't affect initial page load) and very small, but we understand.

In the end, the decision on whether or not to use the API client or the JavaScript snippet should be based on what works best for you. You'll be able to integrate fully with Customer.io with either approach.

Setup

Create an instance of the client with your customer.io credentials which can be found on the customer.io integration screen.

cio := customerio.NewCustomerIO("YOUR SITE ID", "YOUR API SECRET KEY")
Identify logged in customers

Tracking data of logged in customers is a key part of Customer.io. In order to send triggered emails, we must know the email address of the customer. You can also specify any number of customer attributes which help tailor Customer.io to your business.

Attributes you specify are useful in several ways:

  • As customer variables in your triggered emails. For instance, if you specify the customer's name, you can personalize the triggered email by using it in the subject or body.

  • As a way to filter who should receive a triggered email. For instance, if you pass along the current subscription plan (free / basic / premium) for your customers, you can set up triggers which are only sent to customers who have subscribed to a particular plan (e.g. "premium").

You'll want to indentify your customers when they sign up for your app and any time their key information changes. This keeps Customer.io up to date with your customer information.

// Arguments
// customerID (required) - a unique identifier string for this customers
// attributes (required) - a ```map[string]interface{}``` of information about the customer. You can pass any
//                         information that would be useful in your triggers. You 
//                         should at least pass in an email, and created_at timestamp.
//                         your interface{} should be parseable as Json by 'encoding/json'.Marshal

cio.Identify("5", map[string]interface{}{
  "email": "bob@example.com",
  "created_at": time.Now().Unix(),
  "first_name": "Bob",
  "plan": "basic",
})
Deleting customers

Deleting a customer will remove them, and all their information from Customer.io. Note: if you're still sending data to Customer.io via other means (such as the javascript snippet), the customer could be recreated.

// Arguments
// customerID (required) - a unique identifier for the customer.  This
//                          should be the same id you'd pass into the
//                          `identify` command above.

cio.Delete("5")
Tracking a custom event

Now that you're identifying your customers with Customer.io, you can now send events like "purchased" or "watchedIntroVideo". These allow you to more specifically target your users with automated emails, and track conversions when you're sending automated emails to encourage your customers to perform an action.

// Arguments
// customerID (required)  - the id of the customer who you want to associate with the event.
// name (required)        - the name of the event you want to track.
// attributes (optional)  - any related information you'd like to attach to this
//                          event, as a ```map[string]interface{}```. These attributes can be used in your triggers to control who should
//                         receive the triggered email. You can set any number of data values.

cio.Track("5", "purchase", map[string]interface{}{
    "type": "socks",
    "price": "13.99",
})

Contributing

  1. Fork it
  2. Clone your fork (git clone git@github.com:MY_USERNAME/go-customerio.git && cd go-customerio)
  3. Create your feature branch (git checkout -b my-new-feature)
  4. Commit your changes (git commit -am 'Added some feature')
  5. Push to the branch (git push origin my-new-feature)
  6. Create new Pull Request

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type CustomerIO

type CustomerIO struct {
	Host string
	SSL  bool
	// contains filtered or unexported fields
}

CustomerIO wraps the customer.io API, see: http://customer.io/docs/api/rest.html

func NewCustomerIO

func NewCustomerIO(siteID, apiKey string) *CustomerIO

NewCustomerIO creates a new CustomerIO object to perform requests on the supplied credentials

func (*CustomerIO) Delete

func (c *CustomerIO) Delete(customerID string) error

Delete deletes a customer

func (*CustomerIO) Identify

func (c *CustomerIO) Identify(customerID string, attributes map[string]interface{}) error

Identify identifies a customer and sets their attributes

func (*CustomerIO) Track

func (c *CustomerIO) Track(customerID string, eventName string, data map[string]interface{}) error

Track sends a single event to Customer.io for the supplied user

type CustomerIOError

type CustomerIOError struct {
	// contains filtered or unexported fields
}

CustomerIOError is returned by any method that fails at the API level

func (*CustomerIOError) Error

func (e *CustomerIOError) Error() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL