groovehq-api
v1.3.7
Published
Create groove ticket
Readme
GrooveHQ API (groovehq-api)
Node.js wrapper for GrooveHQ API (https://www.groovehq.com/docs)
Installation
npm install groovehq-api --saveUsage
var Groove = require('groovehq-api');
var groove = new Groove(YOUR_GROOVEHQ_ACCESS_TOKEN_HERE);Create a ticket example
groove.createTicket(YOUR_PARAMETERS_IN_THE_FROM_OF_OBJECT);
FOR EXAMPLE
var items={body:'YOUR_DATA_HERE',
from:'[email protected]',
to:'[email protected]'};See https://www.groovehq.com/docs for more info about other methods.
Future work
- Add all available API methods. [by xohotech]
