Official Voucherify SDK for Node.js
Migration from 1.x | Setup | Callback or Promise? | Error handling | Contributing | Changelog
API: Vouchers | Campaigns | Distributions | Validations | Redemptions | Customers | Orders | Products | Segments | Validation Rules | Promotions | Events | Utils
npm install voucherify --save
Log-in to Voucherify web interface and obtain your Application Keys from Configuration:
const voucherifyClient = require('voucherify')
const client = voucherifyClient({
applicationId: 'YOUR-APPLICATION-ID',
clientSecretKey: 'YOUR-CLIENT-SECRET-KEY'
})
Optionally, you can add apiVersion
to the client options if you want to use a specific API version.
const clientV20170420 = voucherifyClient({
applicationId: 'YOUR-APPLICATION-ID',
clientSecretKey: 'YOUR-CLIENT-SECRET-KEY',
apiVersion: 'v2017-04-20'
})
All methods in the SDK provide both callback based as well as promise based interactions. If you want to use callback just pass it as a last parameter. For example:
client.vouchers.get('v1GiJYuuS', (error, result) => {
if (error) {
// handle error
return
}
// do the work
})
If you prefer to use promises then the code goes like this:
client.vouchers.get('v1GiJYuuS')
.then((result) => {
console.log(result)
})
.catch((error) => {
console.error("Error: %s", error)
})
All other examples in the readme use promises but they could be as well written with callbacks.
This SDK is fully consistent with restful API Voucherify provides. You will find detailed description and example responses at official docs. Method headers point to more detailed descriptions of params you can use.
Methods are provided within client.vouchers.*
namespace.
- Create Voucher
- Get Voucher
- Update Voucher
- Delete Voucher
- Add Gift Voucher Balance
- List Vouchers
- Enable Voucher
- Disable Voucher
- Import Vouchers
client.vouchers.create(voucher)
Check voucher object.
client.vouchers.get(code)
client.vouchers.update(voucher)
client.vouchers.delete(code)
client.vouchers.delete(code, {force: true})
client.vouchers.list()
client.vouchers.list(params)
client.vouchers.enable()
client.vouchers.enable(code)
client.vouchers.disable()
client.vouchers.disable(code)
client.vouchers.import(vouchers)
client.vouchers.balance.create(code, {amount})
Methods are provided within client.campaigns.*
namespace.
- Create Campaign
- Update Campaign
- Get Campaign
- Add Voucher to Campaign
- Import Vouchers to Campaign
- List Campaigns
client.campaigns.create(campaign)
Method will update only fields passed to campaign
argument.
client.campaigns.update(campaignId, campaign)
client.campaigns.update(campaignName, campaign)
client.campaigns.get(name)
client.campaigns.addVoucher(campaignName)
client.campaigns.addVoucher(campaignName, params)
client.campaigns.importVouchers(campaignName, vouchers, callback)
Since API version: v2017-04-20
.
client.campaigns.list()
client.campaigns.list(params)
Methods are provided within client.distributions.*
namespace.
client.distributions.publish(params)
client.distributions.exports.create(exportObject)
Check the export object.
client.distributions.exports.get(exportId)
client.distributions.exports.delete(exportId)
client.distributions.publications.list()
client.distributions.publications.list(params)
Methods are provided within client.validations.*
namespace.
client.validations.validateVoucher(code)
client.validations.validateVoucher(code, params)
// or
client.validations.validate(code)
client.validations.validate(code, params)
client.validations.validate(params)
Methods are provided within client.redemptions.*
namespace.
- Redeem Voucher
- Redeem Promotion's Tier
- List Redemptions
- Get Voucher's Redemptions
- Rollback Redemption
client.redemptions.redeem(code)
client.redemptions.redeem(code, params)
// Deprecated!
client.redemptions.redeem({code, ...params})
client.redemptions.redeem({code, ...params}, tracking_id)
client.redemptions.redeem(code, tracking_id) // use: client.redemptions.redeem(code, {customer: {source_id}})
client.redemptions.redeem(promotionsTier, params)
client.redemptions.list()
client.redemptions.list(params)
client.redemptions.getForVoucher(code)
client.redemptions.rollback(redemptionId)
client.redemptions.rollback(redemptionId, params)
client.redemptions.rollback(redemptionId, reason)
Check redemption rollback object.
Methods are provided within client.promotions.*
namespace.
- Create Promotion Campaign
- Validate Promotion Campaign
- List Promotion's Tiers
- Create Promotion's Tier
- Redeem Promotion's Tier
- Update Promotion's Tier
- Delete Promotion's Tier
Check promotion campaign object.
client.promotions.create(promotionCampaign)
client.promotions.validate(validationContext)
client.promotions.tiers.list(promotionCampaignId)
Check promotion's tier object
client.promotions.tiers.create(promotionId, promotionsTier)
client.promotions.tiers.redeem(promotionsTierId, redemptionContext)
client.promotions.tiers.update(promotionsTier)
client.promotions.tiers.delete(promotionsTierId)
Methods are provided within client.customers.*
namespace.
client.customers.create(customer)
Check customer object.
client.customers.get(customerId)
customer
object must contain id
or source_id
.
client.customers.update(customer)
client.customers.delete(customerId)
client.customers.list()
client.customers.list(params)
Methods are provided within client.orders.*
namespace.
client.orders.create(order)
Check the order object.
client.orders.get(orderId)
client.orders.update(order)
client.orders.list()
client.orders.list(params)
Methods are provided within client.products.*
namespace.
- Create Product
- Get Product
- Update Product
- Delete Product
- List Products
- Create SKU
- Get SKU
- Update SKU
- Delete SKU
- List all product SKUs
client.products.create(product)
Check product object.
client.products.get(productId)
client.products.update(product)
client.products.delete(productId)
client.products.delete(productId, {force: true})
client.products.list()
client.products.list(params)
client.products.createSku(productId, sku)
Check SKU object.
client.products.getSku(productId, skuId)
client.products.updateSku(productId, sku)
client.products.deleteSku(productId, skuId)
client.products.deleteSku(productId, skuId, {force: true})
client.products.listSkus(productId)
Methods are provided within client.segments.*
namespace.
client.segments.create(segment)
Check the segment object.
client.segments.get(segmentId)
client.segments.delete(segmentId)
Methods are provided within client.validationRules.*
namespace.
client.validationRules.create(validationRule)
Check validation rule object.
client.validationRules.get(validationRuleId)
client.validationRules.update(validationRule)
client.validationRules.delete(validationRuleId)
Methods are provided within client.events.*
namespace.
Check customer object.
client.events.track(eventName, metadata, customer)
Version 2.x of the SDK is fully backward compatible with version 1.x. Changes made in version 2.x mostly relate to grouping methods within namespaces. So all you need to do is to follow the list bellow and just replace deprecated methods with their namespaced equivalent.
We also recommend to adopt voucher redemption method, and don't use deprecated invocation.
client.list(params)
- client.vouchers.listclient.get(voucherCode)
- client.vouchers.getclient.create(voucher)
- client.vouchers.createclient.update(voucher)
- client.vouchers.updateclient.delete(voucherCode, [params])
- client.vouchers.deleteclient.disable(voucherCode)
- client.vouchers.disableclient.enable(voucherCode)
- client.vouchers.enableclient.campaign.voucher.create(campaignName)
- client.campaigns.addVoucherclient.redemption(voucherCode)
- client.redemptions.getForVoucherclient.publish(campaign_name|params)
- client.distributions.publishclient.validate(voucherCode, params)
- client.validations.validateVoucherclient.redeem(voucherCode, tracking_id|params)
- client.redemptions.redeemclient.redemptions(params)
- client.redemptions.listclient.rollback(redemptionId, params)
- client.redemptions.rollbackclient.customer.*
- changed namespace to client.customers.*client.product.*
- changed namespace to client.products.*client.product.sku.*
- changed namespace to client.products.*
const utils = require('voucherify/utils')
Utils don't need callbacks nor promises. They return results immediately.
utils.calculatePrice(basePrice, voucher)
utils.calculateDiscount(basePrice, voucher)
utils.webhooks.verifySignature(signature, message, secretKey)
Depending what you have choose error
object of rejected Promise or first argument of provided callback has
consistent structure, described in details in our API reference.
Bug reports and pull requests are welcome through GitHub Issues.
- 2018-10-26 -
2.18.0
- Add Update Campaign methodclient.campaigns.update(campaignId, campaign)
- 2018-10-22 -
2.17.0
- Add example of using the
filters
parameter in the method for listing campaigns - Allow zero discount in calc utils
- Add example of using the
- 2018-08-01 -
2.16.0
- Fix reported vulnerabilities (#77) - 2018-06-14 -
2.15.0
- Fixed the way string errors are handled - 2018-03-14 -
2.14.0
- Added util method to Verify Webhooks signature - 2018-01-21 -
2.13.1
- Remove outdatedclient.distributions.publish(campaignName)
method interface - 2017-12-06 -
2.13.0
- Fix voucher validation vulnerability
- Allow to force delete Products and SKUs
- Add Clients listing
- 2017-11-16 -
2.12.0
- Expose Promotions API
- Update Redemptions and Validations namespace
- 2017-10-24 -
2.11.0
- Expose Events API - track events done by the customers - 2017-09-14 -
2.10.0
- Expose Segments API
- Expose Orders API
- Expose Exports API
- Expose Publications list
- 2017-08-29 -
2.8.0
- Expose Campaigns listing
- 2017-08-29 -
2.7.0
- Allow to update Customer by source ID when ID not provided
- 2017-08-09 -
2.6.0
- Add Validation Rules namespace with CRUD methods
- Add Balance namespace with support of Add Gift Voucher Balance method
- 2017-04-21 -
2.5.0
- Add option to override channel. - 2017-04-21 -
2.4.0
- Add option to select specific API version. - 2017-02-20 -
2.3.0
- Add support for node-v0.10 - 2017-02-10 -
2.1.1
- Bugfix missingObject.assign
implementation (touched node-v0.12) - 2017-02-01 -
2.1.0
- Added support for bulk enable/disable vouchers - 2016-12-02 -
2.0.0
- Rewritten SDK, added missing API methods, updated README. Backward capability is provided but we strongly recommend to follow the migration from version 1.x - 2016-12-01 -
1.23.2
- Support gift vouchers in utils - 2016-11-15 -
1.23.1
- Validate init options - 2016-10-26 -
1.23.0
- Error handling improved - passing error object in response to rejected request - 2016-10-03 -
1.22.0
- Added customer parameter to the rollback method - 2016-10-03 -
1.21.1
- Updated documentation according to changes in Publish API method - 2016-09-16 -
1.21.0
- Added method for adding new vouchers to existing campaign - 2016-09-15 -
1.20.0
- Added method for deleting vouchers by code - 2016-09-01 -
1.19.0
- Documentation for evaluating validation rules based on order details - 2016-08-03 -
1.18.1
- Improvements in documentation of SKU API - 2016-08-02 -
1.18.0
- Implemented new API methods- SKU
- Create
- Get
- Update
- Delete
- SKU
- 2016-08-02 -
1.17.0
- Validate voucher - 2016-07-29 -
1.16.0
- Implemented new API methods- Product
- Create
- Get
- Update
- Delete
- Product
- 2016-07-18 -
1.15.0
- Voucher update method. - 2016-06-22 -
1.14.1
- Gift vouchers. - 2016-06-16 -
1.14.0
- Unified naming convention - 2016-06-08 -
1.13.0
- Implemented new API methods- Customer
- Create
- Get
- Update
- Delete
- Customer
- 2016-06-01 -
1.12.0
- tracking_id param removed from redemption rollback method. - 2016-05-24 -
1.11.0
- New publish structure. - 2016-04-26 -
1.10.0
- Rollback redemption. - 2016-04-19 -
1.9.1
- Filter vouchers and redemptions by customer. - 2016-04-08 -
1.9.0
- Added methods to create, disable and enable a voucher. - 2016-04-07 -
1.8.0
- List redemptions with filtering. - 2016-04-04 -
1.7.1
- Updated API URL. - 2016-03-08 -
1.7.0
- List vouchers with filtering. - 2016-01-22 -
1.6.0
- Added publish voucher method. - 2015-12-10 -
1.5.0
- New discount model. Added UNIT - a new discount type. - 2015-11-23 -
1.4.1
- AddedX-Voucherify-Channel
header. - 2015-11-10 -
1.4.0
- AddVoucherifyUtils
which includescalculatePrice
for computing product/cart price after discount andcalculateDiscount
. - 2015-11-05 -
1.3.2
- Updated Readme to snake case naming convention - 2015-10-13 -
1.3.1
- Fixed Readme - 2015-10-12 -
1.3.0
- Changed API after Voucherify's API change- use --> redeem
- usage --> redemption
- 2015-09-25 -
1.2.0
- Ability to track a detailed customer profile that uses a voucher. - 2015-09-24 -
1.1.2
- Small fixes in logging. - 2015-09-11 -
1.1.1
- Updated backend URL. - 2015-08-13 -
1.1.0
- Ability to track use voucher operation.- Properly handling voucher codes with not URL-friendly characters.
- 2015-07-09 -
1.0.1
- Returning to old API URL. - 2015-07-03 -
1.0.0
- Switching API URL. - 2015-07-03 -
0.2.0
- Adding promises support.- You can either:
- Pass a callback in order to use old-school API style.
- Or you can skip the callback and use returned promise.
- You can either:
- 2015-07-03 -
0.1.1
- Publishing package in thenpm
repository. - 2015-07-02 -
0.1.0
- First version:- Authentication
- Voucher informations: get, usage
- Voucher operations: use