Warning: ALPHA release - unstable API and feature incomplete
Contains utilities to simplify interaction with the Paid On Results Affiliate Marketing Network APIs.
Provides support for the following data types:
- Merchants
- Links
Bear in mind that some calls may take a little while to return if they contain a large data set. This is because we do multiple API calls to get all pages of data, which we then stitch together in the output for your benefit.
- Node.js / NPM
npm i paid-on-results --save
var POR = new PaidOnResults({
apiKey: '123456',
affiliateId: '123455'
})
Get a list of all advertisers in the Paid On Results system
POR.getAdvertisers()
Get links linked to the websiteId
POR.getLinks()
Get voucher codes linked to the websiteId
POR.getVouchers()
Get transactions linked to the websiteId
POR.getTransactions()
npm test