All URIs are relative to http://localhost
Method | HTTP request | Description |
---|---|---|
GroupUsersAddUserToGroup | Put /api/manage/v1/Groups/{id}/Users/{userId} | Add user to the group by identifier |
GroupUsersGetUsersInGroup | Get /api/manage/v1/Groups/{id}/Users | Returns users in the group by identifier |
GroupUsersLeaveFromGroup | Delete /api/manage/v1/Groups/{id}/leave | Leave from the group |
GroupUsersRemoveFromGroup | Delete /api/manage/v1/Groups/{id}/Users/{userId} | Remove user from the group by identifier |
GroupUsersAddUserToGroup(ctx, id, userId).Execute()
Add user to the group by identifier
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/fastreports/gofrcloud"
)
func main() {
id := "id_example" // string | Identifier of group
userId := "userId_example" // string | Identifier of user
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
r, err := apiClient.GroupUsersAPI.GroupUsersAddUserToGroup(context.Background(), id, userId).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `GroupUsersAPI.GroupUsersAddUserToGroup``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
id | string | Identifier of group | |
userId | string | Identifier of user |
Other parameters are passed through a pointer to a apiGroupUsersAddUserToGroupRequest struct via the builder pattern
Name | Type | Description | Notes |
---|
(empty response body)
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
GroupUsersVM GroupUsersGetUsersInGroup(ctx, id).Skip(skip).Take(take).Execute()
Returns users in the group by identifier
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/fastreports/gofrcloud"
)
func main() {
id := "id_example" // string | Identifier of group
skip := int32(56) // int32 | how many to skip (optional) (default to 0)
take := int32(56) // int32 | how many to take (optional) (default to 10)
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.GroupUsersAPI.GroupUsersGetUsersInGroup(context.Background(), id).Skip(skip).Take(take).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `GroupUsersAPI.GroupUsersGetUsersInGroup``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `GroupUsersGetUsersInGroup`: GroupUsersVM
fmt.Fprintf(os.Stdout, "Response from `GroupUsersAPI.GroupUsersGetUsersInGroup`: %v\n", resp)
}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
id | string | Identifier of group |
Other parameters are passed through a pointer to a apiGroupUsersGetUsersInGroupRequest struct via the builder pattern
Name | Type | Description | Notes |
---|
skip | int32 | how many to skip | [default to 0] take | int32 | how many to take | [default to 10]
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
GroupUsersLeaveFromGroup(ctx, id).Execute()
Leave from the group
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/fastreports/gofrcloud"
)
func main() {
id := "id_example" // string | Identifier of group
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
r, err := apiClient.GroupUsersAPI.GroupUsersLeaveFromGroup(context.Background(), id).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `GroupUsersAPI.GroupUsersLeaveFromGroup``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
id | string | Identifier of group |
Other parameters are passed through a pointer to a apiGroupUsersLeaveFromGroupRequest struct via the builder pattern
Name | Type | Description | Notes |
---|
(empty response body)
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
GroupUsersRemoveFromGroup(ctx, id, userId).Execute()
Remove user from the group by identifier
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/fastreports/gofrcloud"
)
func main() {
id := "id_example" // string | Identifier of group
userId := "userId_example" // string | Identifier of user
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
r, err := apiClient.GroupUsersAPI.GroupUsersRemoveFromGroup(context.Background(), id, userId).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `GroupUsersAPI.GroupUsersRemoveFromGroup``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
id | string | Identifier of group | |
userId | string | Identifier of user |
Other parameters are passed through a pointer to a apiGroupUsersRemoveFromGroupRequest struct via the builder pattern
Name | Type | Description | Notes |
---|
(empty response body)
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]