All URIs are relative to https://virtserver.swaggerhub.com/smartgammadev/Evolia/1.0.0
Method | HTTP request | Description |
---|---|---|
searchClient | GET /api/v3/client/{registrationNumber}/{agencyId} | This endpoint is used to search the siret in the DB from the NIC and the Siret |
\Evolia\Model\SiretQueryResult[] searchClient($authorization, $registrationNumber, $agencyId)
This endpoint is used to search the siret in the DB from the NIC and the Siret
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Evolia\SDK\ClientApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$authorization = "authorization_example"; // string |
$registrationNumber = "registrationNumber_example"; // string |
$agencyId = "agencyId_example"; // string |
try {
$result = $apiInstance->searchClient($authorization, $registrationNumber, $agencyId);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ClientApi->searchClient: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
authorization | string | ||
registrationNumber | string | ||
agencyId | string |
\Evolia\Model\SiretQueryResult[]
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]