Invite User Validation
Validation messages for user invitation requests, covering email and password fields.
Overview
| Key | Message | Description |
|---|---|---|
Email.inviteUserRequest.email | Invalid email format. Ensure it includes '@' and a domain name (e.g., [email protected]). | The invite user email has an invalid format. |
NotBlank.inviteUserRequest.email | The email must contain at least one character. Please input the email. | The invite user email is empty. |
NotBlank.inviteUserRequest.password | Please enter the password you wish to use. | The invite user password is empty. |
Size.inviteUserRequest.password | The password must be at least <size> characters long. | The invite user password does not meet the minimum length requirement. |
Validation Message Details
Email.inviteUserRequest.email
Message
Invalid email format. Ensure it includes '@' and a domain name (e.g., [email protected]).
Description
The invite user email has an invalid format.
Root Cause
- The email address does not contain
@or a valid domain name.
Resolution
- Provide a valid email address in the format
[email protected].
NotBlank.inviteUserRequest.email
Message
The email must contain at least one character. Please input the email.
Description
The invite user email is empty.
Root Cause
- The
emailfield was left blank in the invite-user request.
Resolution
- Provide the email address of the user to invite.
NotBlank.inviteUserRequest.password
Message
Please enter the password you wish to use.
Description
The invite user password is empty.
Root Cause
- The
passwordfield was left blank in the invite-user request.
Resolution
- Enter the password for the invited user.
Size.inviteUserRequest.password
Message
The password must be at least <size> characters long.
Description
The invite user password does not meet the minimum length requirement.
Root Cause
- The provided password is shorter than the required minimum length ({
size} characters).
Resolution
- Enter a password that meets the minimum length requirement.