package
0.0.0-20241219230513-2dc4e316667d
Repository: https://github.com/glener10/authentication.git
Documentation: pkg.go.dev
# Functions
SendEmailVerificationCode @Summary Send Email Verification Code (You will need send a JWT token in authorization header, you can get it in the login route) @Description Send Email Verification Code by e-mail or id @Tags user @Produce json @Security Bearer @Param find path string true "Search parameter: e-mail or id" @Param Authorization header string true "JWT Token" default(Bearer <token>) @Success 200 {object} nil @Failure 422 {object} utils_interfaces.ErrorResponse @Failure 404 {object} utils_interfaces.ErrorResponse @Failure 401 {object} utils_interfaces.ErrorResponse @Router /users/sendEmailVerificationCode/{find} [post].