pwinty

A pwinty api library for Node.JS


Keywords
api, pwinty, photo printing
License
MIT
Install
npm install pwinty@2.2.0

Documentation

Travis CI status for doodlemoonch/pwinty

Pwinty api for Node.js

Pwinty API for Node.js is a library for communicating with the Pwinty API. It uses standard callbacks, you can easily wrap in a promises/generator library of your choosing.

Installation

$ npm install pwinty

Quick Start

Init pwinty with your api credentials and host (sandbox/live):

var pwinty = require('../lib/pwinty')('apiKey', 'merchantId', 'https://sandbox.pwinty.com:443');

Then access the pwinty methods:

Create an order

var orderParams = {};
pwinty.createOrder(orderParams, function (err, order) {

    var photo = {
        type: "4x4",
        url: "photourl",
        copies: "2",
        sizing: "ShrinkToExactFit",
        priceToUser: "450"
    };

    pwinty.addPhotoToOrder(order.id, photo, function (err, order) {
        console.log('photo added');
    });
})