All URIs are relative to http://localhost/api
Method | HTTP request | Description |
---|---|---|
operationsPoints | GET /operations/points/ | Return operational points |
\Swagger\Client\Model\PointResponse operationsPoints($company_key, $code)
Return operational points
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Swagger\Client\Api\OperationsApi(
// 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()
);
$company_key = "company_key_example"; // string | IATA company code example \"G1\"
$code = "code_example"; // string | Station Code.
try {
$result = $apiInstance->operationsPoints($company_key, $code);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling OperationsApi->operationsPoints: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
company_key | string | IATA company code example "G1" | |
code | string | Station Code. | [optional] |
\Swagger\Client\Model\PointResponse
No authorization required
- Content-Type: Not defined
- Accept: application/json, text/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]