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