Code Monkey home page Code Monkey logo

intercom-clj's Introduction

intercom-clj

A Clojure library for Intercom's REST API

Usage

  1. Put the following dependency in your project.clj
[intercom-clj "0.2.0"]
  1. Set the Personal Access Token via:
(require '[intercom-clj.core :refer [set-access-token!]])
(set-access-token! "MY-ACCESS-TOKEN")

Or the INTERCOM_ACCESS_TOKEN environment variable.

  1. Start making API calls:
(require '[intercom-clj.users :as users])
(users/show {:user_id 123123123})
(users/show {:email "[email protected]"})
(users/create {:email "[email protected]" :user_id 123 :name "John Doe"})
(users/update {:email "[email protected]" :custom_attributes {:some "value"})
(users/delete {:email "[email protected]"})
(require '[intercom-clj.events :as events])
(events/create {:user_id 1} "plan-upgraded")
(events/create {:email "[email protected]"} "plan-upgraded" {:old_plan "Basic" :new_plan "Enterprise"})
(events/list {:user_id 1})

You get the point :)

Help is Welcome

This is the seed of the library which I hope will grow over time and eventually be adpoted as the official Intercom Clojure client. Pull requests for extending the current set of API calls are more than welcome!

License

Copyright © 2016 FIXME

Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.

intercom-clj's People

Contributors

erez-rabih avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.