app_recetas
  1. Auth
app_recetas
  • Auth
    • sign-in
      POST
    • recover-user
      POST
    • recover-user-confirm
      POST
    • recover-password-change
      POST
    • user-info
      GET
    • user-info
      PUT
  • Recetas
    • Últimas recetas cargadas
      GET
    • Buscar recetas
      POST
    • Consulta de existencia de receta
      GET
    • Obtiene receta por id
      GET
    • Agregar receta
      POST
    • Actualizar receta
      PUT
    • Valoración receta
      POST
    • Obtener mis recetas
      GET
  • Favoritos
    • Obtener recetas favoritas
      GET
    • Agregar receta a favoritos
      POST
    • Eliminar receta de favoritos
      DELETE
  • Otros
    • Listar categorías de recetas
      GET
    • Listar ingredientes de recetas
      GET
    • Listar medidas
      GET
  • Admin
    • Aprobar comentario
      PUT
    • Aprobar receta
      PUT
  1. Auth

recover-password-change

Developing
POST
/recover-password-change
Endpoint para realizar el cambio de contraseña del email registrado.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://okqjoprwutewmsgnphyc.supabase.co/functions/v1/recover-password-change' \
--header 'Content-Type: application/json' \
--data-raw '{
    "email": "",
    "code": "",
    "password": ""
}'
Response Response Example
200 - Success
{
    "status": 200,
    "message": "User recovered successfully"
}

Request

Body Params application/json
object {0}
Examples

Responses

🟢200Success
application/json
Body
object {0}
🟠404Record Not Found
🟠400Bad Request
🔴500Server Error
Modified at 2025-04-20 23:07:22
Previous
recover-user-confirm
Next
user-info
Built with