Returns the API usage per day for this application.
Signature:
Disqus#applications.listUsage(options[, cb])
Usage:
// Node-style
disqus.applications.listUsage({
// defaults shown
application: null,
days: 30
}, function (err, result) {...})
// Promise-style
disqus.applications.listUsage({
api_secret: 'asdfghkj' // can be set globally
access_token: '12345678' // can be set globally
// defaults shown
application: null,
days: 30
})
.then(function (result) {...})
.catch(function (err) {...})
.error(function (err) {...});
Up one level
Applications API
See the disqus-node Applications CLI.
See the Applications API on Disqus.com.