Iniciar sesión
🚀 Servidor de producción
https://api.hiveflow.com/api
🚀 Servidor de producción
https://api.hiveflow.com/api
POST
/auth/login
Autenticación
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.hiveflow.com/api/auth/login' \
--header 'Content-Type: application/json' \
--data-raw '{
"email": "usuario@ejemplo.com",
"password": "MiPassword123",
"rememberMe": false
}'
Response Response Example
200 - Example 1
{
"success": true,
"message": "Inicio de sesión exitoso",
"user": {
"_id": "string",
"email": "user@example.com",
"name": "string",
"status": "active",
"createdAt": "2019-08-24T14:15:22Z",
"updatedAt": "2019-08-24T14:15:22Z"
},
"token": "string",
"expiresIn": "24h"
}
Request
Body Params application/json
Responses
Modified at 2025-06-19 15:26:15