All URIs are relative to https://virtserver.swaggerhub.com/smartgammadev/Evolia/1.0.0
Method | HTTP request | Description |
---|---|---|
getReferences | GET /api/v3/references | Get all the references from the database |
\Evolia\Model\ReferencesResponse getReferences($authorization)
Get all the references from the database
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Evolia\SDK\ReferencesApi(
// 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 |
try {
$result = $apiInstance->getReferences($authorization);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ReferencesApi->getReferences: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
authorization | string |
\Evolia\Model\ReferencesResponse
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]