PHP code example of apihub-cdc / ficoscore-simulacion-client

1. Go to this page and download the library: Download apihub-cdc/ficoscore-simulacion-client 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 / ficoscore-simulacion-client example snippets



public function setUp()
{
    $config = new Configuration();
    $config->setHost('the_url');
    $client = new Client();
    $this->apiInstance = new Instance($client, $config);
    $this->x_api_key = "your_x_api_key";
}  



/**
* Este es el método que se será ejecutado en la prueba ubicado en path/to/repository/test/Api/ApiTest.php
*/
public function testGetReporte()
{
    $request = new Peticion();
    $persona = new Persona();
    $domicilio = new Domicilio();

    $request->setFolio("123456");
    
    $persona->setNombres("JUAN");
    $persona->setApellidoPaterno("SESENTAYDOS");
    $persona->setApellidoMaterno("PRUEBA");
    $persona->setFechaNacimiento("1965-08-09");
    $persona->setRFC("SEPJ650809JG1");

    $domicilio->setDireccion("PASADISO ENCONTRADO 58");
    $domicilio->setColoniaPoblacion("MONTEVIDEO");
    $domicilio->setCiudad("CIUDAD DE MÉXICO");
    $domicilio->setCP("07730");
    $domicilio->setDelegacionMunicipio("GUSTAVO A MADERO");
    $domicilio->setEstado("CDMX");

    $persona->setDomicilio($domicilio);

    $request->setPersona($persona);

    try {
        $result = $this->apiInstance->getReporte($this->x_api_key, $request);
        print_r($result);
    } catch (Exception $e) {
        echo 'Exception when calling ApiTest->testGetReporte: ', $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