Skip to content

Latest commit

 

History

History
50 lines (33 loc) · 1.18 KB

DefaultApi.md

File metadata and controls

50 lines (33 loc) · 1.18 KB

Yoast\MyYoastApiClient\DefaultApi

All URIs are relative to https://my.yoast.test

Method HTTP request Description
checkHealth POST /api/tmp

checkHealth

checkHealth()

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

$apiInstance = new Yoast\MyYoastApiClient\Api\DefaultApi(
    // 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 {
    $apiInstance->checkHealth();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->checkHealth: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

This endpoint does not need any parameter.

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

[Back to top] [Back to API list] [Back to Model list] [Back to README]