All URIs are relative to http://localhost
Method | HTTP request | Description |
---|---|---|
HealthCheckDataGet | Get /api/backend/v1/HealthCheck | healthcheck |
HealthCheckDataGet(ctx).Execute()
healthcheck
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/fastreports/gofrcloud"
)
func main() {
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
r, err := apiClient.HealthCheckAPI.HealthCheckDataGet(context.Background()).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `HealthCheckAPI.HealthCheckDataGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
}
This endpoint does not need any parameter.
Other parameters are passed through a pointer to a apiHealthCheckDataGetRequest struct via the builder pattern
(empty response body)
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]