hchk
v0.0.2
Published
Nodejs API Client for healthchecks.io
Downloads
1
Maintainers
Readme
Nodejs API Client for healthchecks.io
The current API Client for healthchecks.io is Nodejs module. For more details see healthchecks.io API Documentation
Get started
npm install hchk
let client = require('hchk').Client( '{API_KEY}' );
Documentation
Get a list of existing checks
client.listChecks( callback );
More details here
Create a new check
client.createCheck( data, callback );
More details here
Ping existing check
client.pingCheck( uuid, callback );
Update an existing check
client.updateCheck( uuid, data, callback );
More details here
Pause monitoring of a check
client.pauseCheck( uuid, callback );
More details here
Delete check
client.deleteCheck( uuid, callback );
More details here
Get a list of existing integrations
client.listChannels( callback );
More details here