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.
45 lines
1.2 KiB
45 lines
1.2 KiB
package user
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
"strconv"
|
|
|
|
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v12/internal/validators"
|
|
)
|
|
|
|
// GetRequest struct to check if the inviteusertoken and emailaddress pair are valid and matching.
|
|
type IsValidInviteUserTokenRequest struct {
|
|
// InviteUserToken
|
|
// The token that was previously sent to the invited user email
|
|
// Required: true
|
|
InviteUserToken string `url:"inviteusertoken" json:"inviteusertoken" validate:"required"`
|
|
|
|
// EmailAddress
|
|
// Email address for the user
|
|
// Required: true
|
|
EmailAddress string `url:"emailaddress" json:"emailaddress" validate:"required"`
|
|
}
|
|
|
|
// IsValidInviteUserToken checks if the inviteusertoken and emailaddress pair are valid and matching.
|
|
func (u User) IsValidInviteUserToken(ctx context.Context, req IsValidInviteUserTokenRequest) (bool, error) {
|
|
err := validators.ValidateRequest(req)
|
|
if err != nil {
|
|
return false, validators.ValidationErrors(validators.GetErrors(err))
|
|
}
|
|
|
|
url := "/cloudapi/user/isValidInviteUserToken"
|
|
|
|
res, err := u.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
|
|
}
|