denormalizer.denormalize(req.conference.toObject())
        .then(conference => res.status(202).json(conference))
        .catch(err => {
          logger.error(err);
          res.status(500).send('Failed to denormalize conference');