Skip to content

Latest commit

 

History

History
54 lines (35 loc) · 1.46 KB

InformationsApi.md

File metadata and controls

54 lines (35 loc) · 1.46 KB

Sirene\Client\InformationsApi

All URIs are relative to https://api.insee.fr/entreprises/sirene/V3

Method HTTP request Description
informations GET /informations État du service, dates de mise à jour et numéro de version

informations

\Sirene\Client\Model\ReponseInformations informations()

État du service, dates de mise à jour et numéro de version

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

$apiInstance = new Sirene\Client\Api\InformationsApi(
    // 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()
);

try {
    $result = $apiInstance->informations();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling InformationsApi->informations: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

This endpoint does not need any parameter.

Return type

\Sirene\Client\Model\ReponseInformations

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]