npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

affiliate-window

v1.0.3

Published

Awin / Affiliate Window API Helper Methods For Node / JavaScript

Downloads

7

Readme

Awin / Affiliate Window API Helper Methods

Contains utilities to simplify interaction with the Awin (formerly known as Affiliate Window) marketing network APIs.

Prerequisites

  • Node.js / NPM
  • Awin oAuth Token
  • Awin Promotions ID (located under Link & Tools \ My Offers in the Awin interface) for getting voucher codes

Install

npm i affiliate-window --save

Usage

var Awin = require('affiliate-window')

var AW = new Awin({
 oAuthToken: 'xxxx',
})

Returning a list of accounts: (http://wiki.awin.com/index.php/API_get_accounts)

AW.getAccounts().then(function (accounts) {
	 // 'accounts' has the response format described at: http://wiki.awin.com/index.php/API_get_accounts
})

Returning a list of programmes: (http://wiki.awin.com/index.php/API_get_programmes)

AW.getProgrammes({ account, relationship = 'joined' }).then(function (programmes) {
	 // 'programmes' has the response format described at: http://wiki.awin.com/index.php/API_get_programmes
})

Returning an individual programme details: (http://wiki.awin.com/index.php/API_get_programmedetails)

AW.getProgrammeDetail({ account, advertiserId }).then(function (programmeDetail) {
	 // 'programmeDetail' has the response format described at: http://wiki.awin.com/index.php/API_get_programmedetails
})

Returning all programme details: (http://wiki.awin.com/index.php/API_get_programmedetails)

AW.getProgrammeDetails({ account }).then(function (programmeDetails) {
	 // 'programmeDetails' has an array of responses in the format described at: http://wiki.awin.com/index.php/API_get_programmedetails
})

Returning a list of commissions for a given advertiser: (http://wiki.awin.com/index.php/API_get_commissiongroups)

AW.getCommissionGroup({ account, advertiserId }).then(function (commissions) {
	 // 'commissions' has the response format described at: http://wiki.awin.com/index.php/API_get_commissiongroups
})

Returning an individual commission group by its ID: (http://wiki.awin.com/index.php/API_get_commissiongroups)

AW.getCommissionGroup({ account, commissionGroup }).then(function (commissionGroup) {
	 // 'commissionGroup' has the response format described at: http://wiki.awin.com/index.php/API_get_commissiongroups
})

Returning all commission group data along with programme data: (http://wiki.awin.com/index.php/API_get_programmes and http://wiki.awin.com/index.php/API_get_commissiongroups)

AW.getProgrammeAndCommissionGroups({ account, relationship = 'joined' }).then(function (programmesAndCommissionGroups) {
	 // 'programmesAndCommissionGroups' has an array of responses in the format described at:
   http://wiki.awin.com/index.php/API_get_programmes
   merged together with the response from  http://wiki.awin.com/index.php/API_get_commissiongroups
})

Returning a list of transactions (by default returns the last 365 days' of transaction data):

AW.getTransactions({
  account,
	startDate: new Date(`2016-08-21T01:00:00`), // optional
	endDate: new Date(`2016-08-23T01:00:00`), // optional
  dateType = `transaction`, // optional
  timezone = `UTC` // optional
}).then(function (transactions) {
	// 'transactions' has the following response format: http://wiki.awin.com/index.php/API_get_transactions_list
})

Returning a list of voucher codes:

AW.getVouchers({ account, promotionsId }).then(function (vouchers) {
	/*
	'vouchers' has the following response format:
	[{
		"id": 1234,
    "advertiserId": 3744,
    "code": "RMV8",
    "description": "8% OFF ALL TRANSACTIONS",
    "url": "http://www.awin1.com/cread.php?v=3744&t=XXXX&p=http://www.rockmyvintage.co.uk/",
    "startDate": "2014-04-02 23:00:00",
    "endDate": "2019-04-03 22:59:59"
  }]
	*/
})