Sending email through the API
Última actualización
¿Te fue útil?
Sending email through the API
Última actualización
¿Te fue útil?
When this call is made, it will check if the inserted email exists among the different types of registered users, if so, it will generate a new password, save it as a password for the user and send it by email to the indicated address.
Example:
Recovery email.
GET /api/email/recuperapass/{email} HTTP/1.1
Host: server:<port>
Accept: */*
OK
Sin contenido
When this call is made, it will check if the inserted email exists among the different types of registered users and the password matches the password of that email, in which case it will save the new password as the password for the user.
Example:
https://server:5555/api/email/actualizapass/prueba@jnc.es/passantigua/nuevapass
User's email address
User password
New user password
Bearer + JWT_token
GET /api/email/actualizapass/{email}/{pass}/{newpass} HTTP/1.1
Host: server:<port>
Authorization: text
Accept: */*
OK
Sin contenido