/**
  * Automatically generated run method
  * 
  * @param Request $request
  * @return Response
  */
 public function run(Request $request)
 {
     $body = Json::decode($request->getContent());
     if (!isset($body['data'])) {
         throw new InvalidParameterException();
     }
     $data = $body['data'];
     $id = $this->getParam('id');
     $domain = new ActionDomain($this->getServiceContainer());
     $payload = $domain->setModuleId($id, $data);
     return $this->responder->run($request, $payload);
 }