userRequestDto

userRequestDto
userRequestDto

Data object for an user creation request

JSON Example
{
    "email": "string",
    "password": "string"
}
string
email
Required

Email address of the user

string As ^(?=.*?[A-Z])(?=.*?[a-z])(?=.*?[0-9])(?=.*?[?!@#$%^&*])[A-Za-z\d?!@#$%^&*]{8,20}$
password
Required

Password for the user. Must contain minimum 8 and maximum 20 characters, at least one uppercase letter, one lowercase letter, one number and one special character (?!@#$%^&*)

Parameter To