Skip to content

Latest commit

 

History

History
67 lines (44 loc) · 1.68 KB

HealthCheckApi.md

File metadata and controls

67 lines (44 loc) · 1.68 KB

OpenAPI\Client\HealthCheckApi

All URIs are relative to http://localhost, except if the operation defines another base path.

Method HTTP request Description
healthCheckDataGet() GET /api/backend/v1/HealthCheck healthcheck

healthCheckDataGet()

healthCheckDataGet()

healthcheck

Example

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


// Configure HTTP basic authorization: ApiKey
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()
              ->setUsername('YOUR_USERNAME')
              ->setPassword('YOUR_PASSWORD');

// Configure Bearer (JWT) authorization: JWT
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new OpenAPI\Client\Api\HealthCheckApi(
    // 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(),
    $config
);

try {
    $apiInstance->healthCheckDataGet();
} catch (Exception $e) {
    echo 'Exception when calling HealthCheckApi->healthCheckDataGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

This endpoint does not need any parameter.

Return type

void (empty response body)

Authorization

ApiKey, JWT

HTTP request headers

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

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