Skip to content

Latest commit

 

History

History
68 lines (41 loc) · 1.36 KB

DefaultApi.md

File metadata and controls

68 lines (41 loc) · 1.36 KB

\DefaultApi

All URIs are relative to https://api.authlete.com

Method HTTP request Description
MiscEchoApi Get /api/misc/echo /api/misc/echo API

MiscEchoApi

MiscEchoApi(ctx).Execute()

/api/misc/echo API

Example

package main

import (
    "context"
    "fmt"
    "os"
    openapiclient "./openapi"
)

func main() {

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

Return type

(empty response body)

Authorization

ServiceCredentials

HTTP request headers

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

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