@kiina/node-zendesk
Version:
zendesk API client wrapper
22 lines (14 loc) • 518 B
JavaScript
//Tags.js: Client for the zendesk API.
var util = require('util'),
Client = require('./client').Client;
var Tags = exports.Tags = function (options) {
this.jsonAPINames = [ 'tags' ];
Client.call(this, options);
};
// Inherit from Client base object
util.inherits(Tags, Client);
// ######################################################## Tags
// ====================================== Listing Tags
Tags.prototype.list = function (cb) {
return this.requestAll('GET', ['tags'], cb);//all
};