All URIs are relative to http://localhost:4000
Method | HTTP request | Description |
---|---|---|
CreateSubject | Post /v1/admin/subjects | Create subject |
ListSubjects | Get /v1/admin/subjects | List all subjects |
SingleSubjectResult CreateSubject(ctx).SubjectName(subjectName).Execute()
Create subject
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/funlessdev/fl-client-sdk-go"
)
func main() {
subjectName := *openapiclient.NewSubjectName() // SubjectName | Subject to create
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.SubjectsAPI.CreateSubject(context.Background()).SubjectName(subjectName).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `SubjectsAPI.CreateSubject``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `CreateSubject`: SingleSubjectResult
fmt.Fprintf(os.Stdout, "Response from `SubjectsAPI.CreateSubject`: %v\n", resp)
}
Other parameters are passed through a pointer to a apiCreateSubjectRequest struct via the builder pattern
Name | Type | Description | Notes |
---|---|---|---|
subjectName | SubjectName | Subject to create |
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ModuleNamesResult ListSubjects(ctx).Execute()
List all subjects
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/funlessdev/fl-client-sdk-go"
)
func main() {
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.SubjectsAPI.ListSubjects(context.Background()).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `SubjectsAPI.ListSubjects``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `ListSubjects`: ModuleNamesResult
fmt.Fprintf(os.Stdout, "Response from `SubjectsAPI.ListSubjects`: %v\n", resp)
}
This endpoint does not need any parameter.
Other parameters are passed through a pointer to a apiListSubjectsRequest struct via the builder pattern
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]