/**
  * @return mixed
  */
 protected function _callSoap()
 {
     $soapClient = new \SoapClient($this->apiEndpoint);
     $response = $soapClient->trataPeticion(array('datoEntrada' => $this->response));
     return $response;
 }