PHP code example of apihub-cdc / loan-amount-estimator-simulacion
1. Go to this page and download the library: Download apihub-cdc/loan-amount-estimator-simulacion library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
apihub-cdc / loan-amount-estimator-simulacion example snippets
public function setUp()
{
$handler = \GuzzleHttp\HandlerStack::create();
$config = new \LAESimulacion\Client\Configuration();
$config->setHost('the_url');
$client = new \GuzzleHttp\Client(['handler' => $handler]);
$this->apiInstance = new LAEApi($client, $config);
$this->x_api_key = "your_api_key";
}
/**
* Este es el método que se será ejecutado en la prueba ubicado en path/to/repository/test/Api/LAESimulacionApiTest.php
*/
public function testGetLAEByPerson()
{
$request = new \LAESimulacion\Client\Model\PeticionPersona();
$persona = new \LAESimulacion\Client\Model\Persona();
$domicilio = new \LAESimulacion\Client\Model\DomicilioPeticion();
$estado = new \LAESimulacion\Client\Model\CatalogoEstados();
$segmento = new \LAESimulacion\Client\Model\CatalogoSegmento();
$domicilio->setDireccion("INSURGENTES SUR 1007");
$domicilio->setColoniaPoblacion("INSURGENTES SUR");
$domicilio->setDelegacionMunicipio("CIUDAD DE MEXICO");
$domicilio->setCiudad("CIUDAD DE MEXICO");
$domicilio->setEstado($estado::DF);
$domicilio->setCP(null);
$persona->setPrimerNombre("JUAN");
$persona->setApellidoPaterno("PRUEBA");
$persona->setApellidoMaterno("CUATRO");
$persona->setFechaNacimiento("1980-01-04");
$persona->setRFC("PUAC800107");
$persona->setDomicilio($domicilio);
$request->setFolioOtorgante("121212");
$request->setSegmento($segmento::PP);
$request->setPersona($persona);
try {
$result = $this->apiInstance->getLAEByPerson($this->x_api_key, $request);
$this->assertTrue($result!==null);
echo "testGetLAEByPerson\n";
} catch (Exception $e) {
echo 'Exception when calling LAE_SimulacionApi->getLAEByPerson: ', $e->getMessage(), PHP_EOL;
}
}
public function testGetLAEByFolioConsulta()
{
$request = new \LAESimulacion\Client\Model\PeticionFolioConsulta();
$segmento = new \LAESimulacion\Client\Model\CatalogoSegmento();
$request->setFolioOtorgante("1");
$request->setSegmento($segmento::PP);
$request->setFolioConsulta("386636538");
try {
$result = $this->apiInstance->getLAEByFolioConsulta($this->x_api_key, $request);
$this->assertTrue($result!==null);
echo "testGetLAEByFolioConsulta\n";
} catch (Exception $e) {
echo 'Exception when calling LAE_SimulacionApi->getLAEByFolioConsulta: ', $e->getMessage(), PHP_EOL;
}
}
sh
#ejemplo con php en versión 7.3 para otra versión colocar php{version}-curl
apt-get install php7.3-curl
apt-get install php7.3-mbstring