Skip to content

Latest commit

 

History

History
66 lines (40 loc) · 1.35 KB

HealthCheckAPI.md

File metadata and controls

66 lines (40 loc) · 1.35 KB

\HealthCheckAPI

All URIs are relative to http://localhost

Method HTTP request Description
GetHealthCheck Get /health_check

GetHealthCheck

GetHealthCheck(ctx).Execute()

Example

package main

import (
    "context"
    "fmt"
    "os"
    openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)

func main() {

    configuration := openapiclient.NewConfiguration()
    apiClient := openapiclient.NewAPIClient(configuration)
    r, err := apiClient.HealthCheckAPI.GetHealthCheck(context.Background()).Execute()
    if err != nil {
        fmt.Fprintf(os.Stderr, "Error when calling `HealthCheckAPI.GetHealthCheck``: %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 apiGetHealthCheckRequest struct via the builder pattern

Return type

(empty response body)

Authorization

auth_token

HTTP request headers

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

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