zenhub-api
v0.2.0
Published
Wrapper for zenhub api
Downloads
204
Readme
Node.js ZenHub Api
Usage
const ZenHub = require('zenhub-api');
const api = new ZenHub(apiKey);
api
.getBoard({ repo_id: 01234 })
.then((data) => {
console.log('Yheaa some data', data);
})
.catch((e) => {
console.log('Nooo :( errors everywhere', e);
})
;
You can find more samples in the test directory.
Official documentation
Can be found here
Available methods
- getIssueData
- getIssueEvents
- getBoard
- getEpics
- getEpicData
- changePipeline
- setEstimate
- convertToEpic
- convertToIssue
- addOrRemoveToEpic
- createReleaseReport
- getReleaseReport
- getReleaseReportsForRepo
- editReleaseReport
- addWorkspaceToReleaseReport
- removeWorkspaceFromReleaseReport
- getReleaseReportIssues
- addOrRemoveToReleaseReport