Giter Club home page Giter Club logo

beeswax-client's Introduction

beeswax-client

Node.js wrapper for the Beeswax API.

Install

$> npm install beeswax-client

Usage

Instantiation

Instantiate with an options object:

var BeeswaxClient = require('beeswax-client');

var beeswax = new BeeswaxClient({
    apiRoot: 'https://<hostname>',  // Default: 'https://stingersbx.api.beeswax.com'
    creds: {
        email       : '[email protected]',    // required
        password    : '...'                 // required
    },
    useStrict: false // Default: true
});

The apiRoot and useStrict will be used to construct request urls, and the creds will be used when authenticating. The useStrict parameter enables or disables strict mode in Beeswax API (it's either adding or removing /strict suffix from API endpoint URLs).

The instantiated client will contain methods for performing CRUD operations on each supported entity:

beeswax.advertisers.find = function() {}
beeswax.advertisers.query = function() {}
beeswax.advertisers.create = function() {}
beeswax.advertisers.edit = function() {}
beeswax.advertisers.delete = function() {}

beeswax.campaigns.find = function() {}
// ...

beeswax.creatives.find = function() {}
// ...

Currently supported entities are:

  • advertisers
  • campaigns
  • creatives

beeswax.authenticate()

Sends a POST request to authenticate to Beeswax, using the provided creds. You shouldn't need to call this method explicitly - it will be called automatically upon receiving an Unauthorized response from any other request.

beeswax.<entity>.find(id)

Send a GET request to fetch the entity with the given id.

beeswax.<entity>.query(body)

Send a GET request to fetch entities. body should be an object containing any fields to query by. By default, Beeswax's API will fetch up to 50 records, starting with the oldest.

beeswax.<entity>.queryAll(body)

Like query(), but recursively sends GET requests until all entities matching the query have been fetched.

beeswax.<entity>.create(body)

Send a POST request to create a new entity. body should be an object representing the new entity.

beeswax.<entity>.edit(id, body, failOnNotFound)

Send a PUT request to update the entity specified by id. body should be an object containing any fields that should be updated.

beeswax.<entity>.delete(id, failOnNotFound)

Send a DELETE request to delete the entity specified by id

beeswax-client's People

Contributors

leichter avatar romannekhor avatar howardengelhart avatar tcornell05 avatar

Watchers

James Cloos avatar  avatar Sean Skiver  avatar  avatar  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.