All URIs are relative to http://localhost
| Method | HTTP request | Description |
|---|---|---|
| Dummy | Get /dummy/dummy | Dummy path to fix omission in openapi generation when a type is not included. |
Dummy(ctx).Execute()
Dummy path to fix omission in openapi generation when a type is not included.
package main
import (
"context"
"fmt"
"os"
openapiclient "./openapi"
)
func main() {
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.DummyApi.Dummy(context.Background()).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `DummyApi.Dummy``: %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 apiDummyRequest struct via the builder pattern
(empty response body)
ApiToken, ServiceBearer, ServiceToken
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]