Skip to content

Latest commit

 

History

History
137 lines (85 loc) · 3.14 KB

SubjectsAPI.md

File metadata and controls

137 lines (85 loc) · 3.14 KB

\SubjectsAPI

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

CreateSubject

SingleSubjectResult CreateSubject(ctx).SubjectName(subjectName).Execute()

Create subject

Example

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)
}

Path Parameters

Other Parameters

Other parameters are passed through a pointer to a apiCreateSubjectRequest struct via the builder pattern

Name Type Description Notes
subjectName SubjectName Subject to create

Return type

SingleSubjectResult

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

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

ListSubjects

ModuleNamesResult ListSubjects(ctx).Execute()

List all subjects

Example

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)
}

Path Parameters

This endpoint does not need any parameter.

Other Parameters

Other parameters are passed through a pointer to a apiListSubjectsRequest struct via the builder pattern

Return type

ModuleNamesResult

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

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