borja / trovimap-php-client
Simple client to interact with trovimap evaluation API
v0.5
2019-12-10 11:06 UTC
Requires
- guzzlehttp/guzzle: ^6.3
- phpfastcache/phpfastcache: ^7.1
Requires (Dev)
- orchestra/testbench: ~3.6.0|~3.8.0
- dev-master
- v0.5
- v0.4
- v0.3
- v0.2
- v0.1
- dev-dependabot/composer/symfony/http-kernel-4.4.50
- dev-dependabot/composer/guzzlehttp/guzzle-6.5.8
- dev-dependabot/composer/guzzlehttp/psr7-1.8.5
- dev-dependabot/composer/phpfastcache/phpfastcache-7.1.2
- dev-dependabot/composer/league/flysystem-1.1.4
- dev-dependabot/composer/symfony/http-foundation-4.4.1
- dev-dependabot/composer/symfony/mime-4.4.1
This package is auto-updated.
Last update: 2025-03-29 00:43:01 UTC
README
Simple client to interact with trovimap evaluation API
SETUP
use Trovimap\Propertista\TrovimapPhpClient\TrovimapFactory;
$client = TrovimapFactory::create();
1 Getting the cadastral unit
1.1 By Address
1.1.1 Retrieve all parcels using an adress
$address = 'Passatge Escudellers, 7, 08002, Barcelona';
$parcels = $client->getParcelByAddress($address);
1.1.2 get the list of the building units of a parcel, with all their apartments
$buildingUnits = $client->getBuildingUnitByParcelId($parcel->Id);
1.2 get the list of the building units of the parcel that contains the apartments with the cadastral reference passed
$cadastralReference = '1213625DF3811C0009ZX';
$buildingUnits = $client->getBuildingUnitByCadastralReference($cadastralReference);
Now out of the buildingUnits retrieved above, we should be able to retrieve data of one Apartment
from it's ID
2.- Evaluate get the trovivalue of the property
3.- Evaluate get the trovivalue of the property with comparables
use Trovimap\Propertista\TrovimapPhpClient\Models\Request\EvaluationRequest;
$apartmentId = 'asdfasdfasdfasdf';
$request = new EvaluationRequest([
'ApartmentId' => '8_900_1213625DF3811C_001_10',
'ParcelId' => '8_900_1213625DF3811C_0001',
'LivingArea' => 165,
]);
$data = $client->evaluate($apartmentId, $request);
4.- Generate the pdf report of a previous evaluation and download it.
$client->download('buildingUnitId', '/path/to/download/folder');