Warning: ALPHA release - unstable API and feature incomplete
Contains utilities to simplify interaction with the Rakuten LinkShare Affiliate Marketing Network APIs.
Provides support for the following data types:
- Merchants
- Links
- Transactions
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 rakuten-linkshare --save
var RL = new RakutenLinkShare({
websiteId: '123456'
})
Get a list of all advertisers in the Rakuten LinkShare system
RL.getAdvertisers()
Get a list of all banners linked to the websiteId
RL.getBanners()
Get links linked to the websiteId
RL.getLinks()
Get transactions linked to the websiteId
RL.getTransactions()
npm test