Skip to content

Latest commit

 

History

History
66 lines (41 loc) · 1.39 KB

HealthCheckAPI.md

File metadata and controls

66 lines (41 loc) · 1.39 KB

\HealthCheckAPI

All URIs are relative to http://localhost

Method HTTP request Description
HealthCheckDataGet Get /api/backend/v1/HealthCheck healthcheck

HealthCheckDataGet

HealthCheckDataGet(ctx).Execute()

healthcheck

Example

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)
	}
}

Path Parameters

This endpoint does not need any parameter.

Other Parameters

Other parameters are passed through a pointer to a apiHealthCheckDataGetRequest struct via the builder pattern

Return type

(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]