You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.2 KiB
50 lines
1.2 KiB
package account
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
"strconv"
|
|
|
|
"repository.basistech.ru/BASIS/decort-golang-sdk/internal/validators"
|
|
)
|
|
|
|
// UpdateUserRequest struct to update user access rights
|
|
type UpdateUserRequest struct {
|
|
// ID of the account
|
|
// Required: true
|
|
AccountID uint64 `url:"accountId" json:"accountId" validate:"required"`
|
|
|
|
// Userid/Email for registered users or emailaddress for unregistered users
|
|
// Required: true
|
|
UserID string `url:"userId" json:"userId" validate:"required"`
|
|
|
|
// Account permission types:
|
|
// - 'R' for read only access
|
|
// - 'RCX' for Write
|
|
// - 'ARCXDU' for Admin
|
|
// Required: true
|
|
AccessType string `url:"accesstype" json:"accesstype" validate:"accessType"`
|
|
}
|
|
|
|
// UpdateUser updates user access rights
|
|
func (a Account) UpdateUser(ctx context.Context, req UpdateUserRequest) (bool, error) {
|
|
err := validators.ValidateRequest(req)
|
|
if err != nil {
|
|
return false, validators.ValidationErrors(validators.GetErrors(err))
|
|
}
|
|
|
|
url := "/cloudbroker/account/updateUser"
|
|
|
|
res, err := a.client.DecortApiCall(ctx, http.MethodPost, url, req)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
result, err := strconv.ParseBool(string(res))
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
return result, nil
|
|
}
|