router.post('/:id/groups', function (req, res) {
    var username = req.headers['x-gleaner-user'];
    restUtils.processResponse(groups.createGroup(username, req.params.id, req.body), res);
});