All URIs are relative to https://my.yoast.test
Method | HTTP request | Description |
---|---|---|
checkHealth | GET /server-check | Server health check |
string checkHealth()
Server health check
Checks if a simple user query can be performed. If so, we're up and running. If not, something's up
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Yoast\MyYoastApiClient\Api\ServerCheckApi(
// 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->checkHealth();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ServerCheckApi->checkHealth: ', $e->getMessage(), PHP_EOL;
}
?>
This endpoint does not need any parameter.
string
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]