Ejemplo n.º 1
0
 /**
  * @url POST /case/:app_uid/download64
  *
  * @param string $app_uid         {@min 32}{@max 32}
  */
 public function postDownloadFile($app_uid, $request_data)
 {
     try {
         $oMobile = new \ProcessMaker\BusinessModel\Light();
         $files = $oMobile->downloadFile($app_uid, $request_data);
     } catch (\Exception $e) {
         throw (new RestException(Api::STAT_APP_EXCEPTION, $e->getMessage()));
     }
     return $files;
 }