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

user-info

Developing
GET
/user-info/{id}
Obtiene información de un usuario según el id pasado como parámetro
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://okqjoprwutewmsgnphyc.supabase.co/functions/v1/user-info/'
Response Response Example
200 - Example 1
{
    "user": {
        "id": "1234",
        "alias": "chefJuan",
        "email": "chefjuan@ejemplo.com",
        "fullName": "Juan Segundo Schmid Aguerre",
        "role": "visitante",
        "createdAt": "2025-04-01T12:00:00Z",
        "lastLogin": "2025-04-12T08:30:00Z"
    }
}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params
id
string 
required

Responses

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