1.2.0 • Published 2 years ago

shoppy-api v1.2.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

Shoppy-API

A basic shoppy API wrapper

Features

  • Easy usage of the shoppy API
  • Easily integratable
  • Support for webhooks
  • Automatic validation of webhook requests

Installation

Current stable release (1.x)

$ npm install shoppy-api

Usage

Here are some few examples of how you can use the API and how it looks like when in use

Requiring

const { ShoppyAPI, WebhookAPI } = require('shoppy-api');
// OR
const shoppy = require('shoppy-api');

Orders

const { ShoppyAPI } = require('shoppy-api');

const API = new ShoppyAPI('your-token-here');

let page = 1;
API.orders.all(page);

Reviews

const { ShoppyAPI } = require('shoppy-api');

const API = new ShoppyAPI('your-token-here');

let page = 1;
API.feedback.all(page);

Webhook listening

const { WebhookAPI } = require('shoppy-api');

const webhook = new WebhookAPI('your-secret-here');

webhook.on('order:paid', (order) => {
	console.log(`You received order: ${order.id}`);
});

webhook.getWebhookUrl().then((url) => { console.log(`Webhook now listening on ${url}`) });

// Incase your application does not prevent exiting of the script then you can add `process.stdin.resume();` here
1.2.0

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago

1.0.0

2 years ago