Skip to content

Latest commit

 

History

History
66 lines (40 loc) · 1.3 KB

WelcomeAPI.md

File metadata and controls

66 lines (40 loc) · 1.3 KB

\WelcomeAPI

All URIs are relative to http://localhost

Method HTTP request Description
GetWelcome Get /

GetWelcome

GetWelcome(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.WelcomeAPI.GetWelcome(context.Background()).Execute()
    if err != nil {
        fmt.Fprintf(os.Stderr, "Error when calling `WelcomeAPI.GetWelcome``: %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 apiGetWelcomeRequest 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]