Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

groovehq-api

xohotech55ISC1.3.7

Create groove ticket

Groove, GrooveHQ, Ticketing

readme

GrooveHQ API (groovehq-api)

Node.js wrapper for GrooveHQ API (https://www.groovehq.com/docs)

Installation

npm install groovehq-api --save

Usage

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:'client@123mail.com',
          to:'admin@123mail.com'};

See https://www.groovehq.com/docs for more info about other methods.

Future work

  • Add all available API methods. [by xohotech]