Encuentre aquí su software

Busca simples


Busca Avançada

Cómo la IA redefine la relación entre banca y cliente

Publicado por Redacción Portal ERP España en 13/05/2025 en Noticias

Compartir:

Minsait subraya el valor de los asistentes inteligentes y el análisis de datos para ofrecer servicios financieros más personalizados y eficientes


Foto: LinkedIn. Portal ERP España.

Minsait, compañía del Grupo Indra especializada en transformación digital, ha compartido su visión sobre cómo la inteligencia artificial (IA) está transformando el modelo de relación entre las entidades financieras y sus clientes, en el contexto del evento sobre banca 'Revolution Banking'. Aunque la aplicación de esta tecnología comenzó centrada en la optimización de procesos internos, actualmente se ha convertido en una herramienta clave para ofrecer una experiencia más cercana, personalizada y segura.

Según datos recabados por la compañía, 8 de cada 10 entidades bancarias ya utilizan la IA para automatizar y mejorar operaciones como la prevención del fraude, el procesamiento de transacciones, la ciberseguridad o la gestión de solicitudes. No obstante, 2025 marca un punto de inflexión, con un crecimiento significativo de los casos de uso de IA e IA generativa enfocados directamente en la relación con el cliente.

Para Jesús Morales, director de Desarrollo de Negocio en Servicios Financieros de Minsait, “el contexto financiero ha sido uno de los que más ha evolucionado con la digitalización durante los últimos años. La irrupción de los neobancos, que ya capitalizan parte de la demanda, la generalización del uso de aplicaciones por parte de los clientes, la irrupción de la inteligencia artificial o los nuevos asistentes personalizados, avatares y chatbots han supuesto una evolución sin precedentes en la relación con los usuarios”.

Te puede interesar: Minsait impulsa la digitalización del sector asegurador con IA

Minsait destaca que los canales actuales de interacción —aplicaciones móviles, redes sociales, chats o llamadas— exigen herramientas capaces de “escuchar” activamente al usuario. “La clave está en cómo los bancos pueden escuchar esa ‘voz del cliente’ en todos estos canales, entender qué necesitan realmente y ofrecerles respuestas precisas e inmediatas sin perder el toque humano”, señala Morales.

El ejecutivo insiste en que ya no es suficiente con que los sistemas gestionen peticiones: “El cliente ya no se conforma con ello. Necesitamos tecnología que nos permita escuchar, que no oír, todo lo que nos dicen y, sobre todo, aprovechar los datos que nos dan de forma eficiente para poder entender qué necesitan y esperan de su banco y, de esa forma, darles el mejor servicio”.

Para Minsait, la personalización del servicio es uno de los principales valores que la IA puede aportar al sector bancario. Los sistemas con aprendizaje automático mejoran continuamente a partir de los datos recogidos, ofreciendo respuestas más precisas y naturales a medida que se perfeccionan con el uso. Esta capacidad permite mantener una relación continua y adaptada con el cliente, sin caer en automatismos rígidos.

La compañía también recuerda que ha desarrollado soluciones como el avatar AlicIA, diseñado para atender a emprendedores y pymes, y ha explorado nuevos entornos digitales como la banca en el metaverso. Con una fuerte presencia en proyectos de digitalización financiera, Minsait se mantiene como uno de los referentes tecnológicos en servicios bancarios, medios de pago y back office.

 

Publicado por Redacción Portal ERP España en 13/05/2025 en Noticias

Para hacer tu experiencia más agradable, utilizamos cookies para almacenar información sobre cómo usas el Portal ERP. Consulta nuestros 'Términos de Uso y Política de Privacidad' para saber más. Al hacer clic en 'Aceptar', consientes la optimización del sitio mediante el uso de cookies. ¡Aceptar!

Whoops! There was an error.
ErrorException (E_NOTICE)
ob_end_flush(): failed to send buffer of zlib output compression (0) ErrorException thrown with message "ob_end_flush(): failed to send buffer of zlib output compression (0)" Stacktrace: #3 ErrorException in /home/portalerpes2/public_html/vendor/symfony/http-foundation/Response.php:1290 #2 ob_end_flush in /home/portalerpes2/public_html/vendor/symfony/http-foundation/Response.php:1290 #1 Symfony\Component\HttpFoundation\Response:closeOutputBuffers in /home/portalerpes2/public_html/vendor/symfony/http-foundation/Response.php:379 #0 Symfony\Component\HttpFoundation\Response:send in /home/portalerpes2/public_html/public/index.php:72
3
ErrorException
/vendor/symfony/http-foundation/Response.php1290
2
ob_end_flush
/vendor/symfony/http-foundation/Response.php1290
1
Symfony\Component\HttpFoundation\Response closeOutputBuffers
/vendor/symfony/http-foundation/Response.php379
0
Symfony\Component\HttpFoundation\Response send
/public/index.php72
/home/portalerpes2/public_html/vendor/symfony/http-foundation/Response.php
    /**
     * Cleans or flushes output buffers up to target level.
     *
     * Resulting level can be greater than target level if a non-removable buffer has been encountered.
     *
     * @param int  $targetLevel The target output buffering level
     * @param bool $flush       Whether to flush or clean the buffers
     *
     * @final since version 3.3
     */
    public static function closeOutputBuffers($targetLevel, $flush)
    {
        $status = ob_get_status(true);
        $level = \count($status);
        // PHP_OUTPUT_HANDLER_* are not defined on HHVM 3.3
        $flags = \defined('PHP_OUTPUT_HANDLER_REMOVABLE') ? \PHP_OUTPUT_HANDLER_REMOVABLE | ($flush ? \PHP_OUTPUT_HANDLER_FLUSHABLE : \PHP_OUTPUT_HANDLER_CLEANABLE) : -1;
 
        while ($level-- > $targetLevel && ($s = $status[$level]) && (!isset($s['del']) ? !isset($s['flags']) || ($s['flags'] & $flags) === $flags : $s['del'])) {
            if ($flush) {
                ob_end_flush();
            } else {
                ob_end_clean();
            }
        }
    }
 
    /**
     * Checks if we need to remove Cache-Control for SSL encrypted downloads when using IE < 9.
     *
     * @see http://support.microsoft.com/kb/323308
     *
     * @final since version 3.3
     */
    protected function ensureIEOverSSLCompatibility(Request $request)
    {
        if (false !== stripos($this->headers->get('Content-Disposition'), 'attachment') && 1 == preg_match('/MSIE (.*?);/i', $request->server->get('HTTP_USER_AGENT'), $match) && true === $request->isSecure()) {
            if ((int) preg_replace('/(MSIE )(.*?);/', '$2', $match[0]) < 9) {
                $this->headers->remove('Cache-Control');
            }
        }
Arguments
  1. "ob_end_flush(): failed to send buffer of zlib output compression (0)"
    
/home/portalerpes2/public_html/vendor/symfony/http-foundation/Response.php
    /**
     * Cleans or flushes output buffers up to target level.
     *
     * Resulting level can be greater than target level if a non-removable buffer has been encountered.
     *
     * @param int  $targetLevel The target output buffering level
     * @param bool $flush       Whether to flush or clean the buffers
     *
     * @final since version 3.3
     */
    public static function closeOutputBuffers($targetLevel, $flush)
    {
        $status = ob_get_status(true);
        $level = \count($status);
        // PHP_OUTPUT_HANDLER_* are not defined on HHVM 3.3
        $flags = \defined('PHP_OUTPUT_HANDLER_REMOVABLE') ? \PHP_OUTPUT_HANDLER_REMOVABLE | ($flush ? \PHP_OUTPUT_HANDLER_FLUSHABLE : \PHP_OUTPUT_HANDLER_CLEANABLE) : -1;
 
        while ($level-- > $targetLevel && ($s = $status[$level]) && (!isset($s['del']) ? !isset($s['flags']) || ($s['flags'] & $flags) === $flags : $s['del'])) {
            if ($flush) {
                ob_end_flush();
            } else {
                ob_end_clean();
            }
        }
    }
 
    /**
     * Checks if we need to remove Cache-Control for SSL encrypted downloads when using IE < 9.
     *
     * @see http://support.microsoft.com/kb/323308
     *
     * @final since version 3.3
     */
    protected function ensureIEOverSSLCompatibility(Request $request)
    {
        if (false !== stripos($this->headers->get('Content-Disposition'), 'attachment') && 1 == preg_match('/MSIE (.*?);/i', $request->server->get('HTTP_USER_AGENT'), $match) && true === $request->isSecure()) {
            if ((int) preg_replace('/(MSIE )(.*?);/', '$2', $match[0]) < 9) {
                $this->headers->remove('Cache-Control');
            }
        }
/home/portalerpes2/public_html/vendor/symfony/http-foundation/Response.php
    {
        echo $this->content;
 
        return $this;
    }
 
    /**
     * Sends HTTP headers and content.
     *
     * @return $this
     */
    public function send()
    {
        $this->sendHeaders();
        $this->sendContent();
 
        if (\function_exists('fastcgi_finish_request')) {
            fastcgi_finish_request();
        } elseif (!\in_array(\PHP_SAPI, ['cli', 'phpdbg'], true)) {
            static::closeOutputBuffers(0, true);
        }
 
        return $this;
    }
 
    /**
     * Sets the response content.
     *
     * Valid types are strings, numbers, null, and objects that implement a __toString() method.
     *
     * @param mixed $content Content that can be cast to string
     *
     * @return $this
     *
     * @throws \UnexpectedValueException
     */
    public function setContent($content)
    {
        if (null !== $content && !\is_string($content) && !is_numeric($content) && !\is_callable([$content, '__toString'])) {
            throw new \UnexpectedValueException(sprintf('The Response content must be a string or object implementing __toString(), "%s" given.', \gettype($content)));
Arguments
  1. 0
    
  2. true
    
/home/portalerpes2/public_html/public/index.php
| and wonderful application we have prepared for them.
|
*/
if(isset($_SERVER['HTTP_HOST']) &&  $host = $_SERVER['HTTP_HOST']){
    if($host != 'portal.erp'){
        $app->bind('path.public', function() {
 
            return __DIR__;
        });
    }
}
 
 
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
 
$response = $kernel->handle(
    $request = Illuminate\Http\Request::capture()
);
 
$response->send();
 
$kernel->terminate($request, $response);
 

Environment & details:

empty
empty
empty
empty
empty
Key Value
PATH
"/usr/local/bin:/bin:/usr/bin"
HTTP_ACCEPT
"*/*"
HTTP_ACCEPT_ENCODING
"gzip, br, zstd, deflate"
HTTP_HOST
"portalerp.es"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
HTTP_X_HTTPS
"1"
DOCUMENT_ROOT
"/home/portalerpes2/public_html/public"
REMOTE_ADDR
"216.73.216.126"
REMOTE_PORT
"17754"
SERVER_ADDR
"64.227.31.243"
SERVER_NAME
"portalerp.es"
SERVER_ADMIN
"webmaster@portalerp.es"
SERVER_PORT
"443"
REQUEST_SCHEME
"https"
REQUEST_URI
"/como-la-ia-redefine-la-relacion-entre-banca-y-cliente"
REDIRECT_URL
"/como-la-ia-redefine-la-relacion-entre-banca-y-cliente"
REDIRECT_REQUEST_METHOD
"GET"
HTTPS
"on"
REDIRECT_STATUS
"200"
X_SPDY
"HTTP2"
SSL_PROTOCOL
"TLSv1.3"
SSL_CIPHER
"TLS_AES_256_GCM_SHA384"
SSL_CIPHER_USEKEYSIZE
"256"
SSL_CIPHER_ALGKEYSIZE
"256"
SCRIPT_FILENAME
"/home/portalerpes2/public_html/public/index.php"
QUERY_STRING
""
SCRIPT_URI
"https://portalerp.es/como-la-ia-redefine-la-relacion-entre-banca-y-cliente"
SCRIPT_URL
"/como-la-ia-redefine-la-relacion-entre-banca-y-cliente"
SCRIPT_NAME
"/index.php"
SERVER_PROTOCOL
"HTTP/1.1"
SERVER_SOFTWARE
"LiteSpeed"
REQUEST_METHOD
"GET"
X-LSCACHE
"on"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1751369153.732
REQUEST_TIME
1751369153
argv
[]
argc
0
empty
0. Whoops\Handler\PrettyPageHandler