All URIs are relative to https://api.wall.et, except if the operation defines another base path.
Method | HTTP request | Description |
---|---|---|
fetchAllCountries() | GET /system/countries/all | Fetch all countries |
fetchAllCountries(): \OpenAPI\Client\Model\FetchAllCountries200ResponseInner[]
Fetch all countries
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\CountriesApi(
// 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->fetchAllCountries();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling CountriesApi->fetchAllCountries: ', $e->getMessage(), PHP_EOL;
}
This endpoint does not need any parameter.
\OpenAPI\Client\Model\FetchAllCountries200ResponseInner[]
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]