The activity log (bitacora) tracks all significant actions performed in the system, including product publications and other modifications. This endpoint returns the activity log joined with user information.
The endpoint performs a SQL join between the bitacora and usuarios tables:
SELECT B.fecha, B.modificacion, U.tipoUsuario, U.correo, CONCAT_WS(" ", U.nombre, U.apellido) as Nombre, B.cantidadFROM bitacora as B INNER JOIN usuarios as U ON B.idUsuarioB = U.id