/**
  * @return JsonModel
  */
 public function notifyAction()
 {
     $this->guardValidHash();
     $format = $this->config->getNotify()->getFormat();
     $rawData = $this->params()->fromPost($format);
     $data = $this->parseData($format, $rawData);
     $this->notifyService->notify($data);
     return new JsonModel(['success' => true]);
 }