Skip to content

Latest commit

 

History

History
55 lines (38 loc) · 1.58 KB

ReferencesApi.md

File metadata and controls

55 lines (38 loc) · 1.58 KB

Evolia\ReferencesApi

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

getReferences

\Evolia\Model\ReferencesResponse getReferences($authorization)

Get all the references from the database

Example

<?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;
}
?>

Parameters

Name Type Description Notes
authorization string

Return type

\Evolia\Model\ReferencesResponse

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]