pwinty

2.3.1 • Public • Published

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');
    });
})

Package Sidebar

Install

npm i pwinty

Weekly Downloads

8

Version

2.3.1

License

MIT

Last publish

Collaborators

  • doodlemoonch