All URIs are relative to https://share.catrob.at/api
Method | HTTP request | Description |
---|---|---|
healthGet | GET /health | Health Check |
# src/Acme/MyBundle/Resources/services.yml
services:
# ...
acme.my_bundle.api.utility:
class: Acme\MyBundle\Api\UtilityApi
tags:
- { name: "open_api_server.api", api: "utility" }
# ...
healthGet()
Health Check
<?php
// src/Acme/MyBundle/Api/UtilityApiInterface.php
namespace Acme\MyBundle\Api;
use OpenAPI\Server\Api\UtilityApiInterface;
class UtilityApi implements UtilityApiInterface
{
// ...
/**
* Implementation of UtilityApiInterface#healthGet
*/
public function healthGet()
{
// Implement the operation ...
}
// ...
}
This endpoint does not need any parameter.
void (empty response body)
No authorization required
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]