> ## Documentation Index
> Fetch the complete documentation index at: https://docs.fintoc.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Errores

## No puedes crear un Refresh Intent cuando hay otro en curso

Si creas un Refresh Intent cuando hay otro en curso, recibirás un error que se ve así:

```json theme={null}
{
    "error": {
        "type": "invalid_request_error",
        "message": "There is already a refresh intent in progress for link_00000000.",
        "code": "refresh_intent_in_progress",
        "param": null,
        "doc_url": "https://docs.fintoc.com/reference/errors"
    }
}
```

## Tienes que esperar 5 minutos para crear un nuevo Refresh Intent

Si creaste un Refresh Intent hace menos de 5 minutos y fue exitoso, recibirás un error que se ve así:

```json theme={null}
{
    "error": {
        "type": "invalid_request_error",
        "message": "This Link was recently refreshed.You have to wait at least 5 minutes between refresh intents",
        "code": "rate_limit_exceeded",
        "param": null,
        "doc_url": "https://docs.fintoc.com/reference/errors"
    }
}
```

<Info>
  Si creaste un Refresh Intent hace menos de 5 minutos y falló, puedes crear otro sin esperar.
</Info>

## Las credenciales son inválidas

Si confirmamos que las credenciales que estás intentando usar son inválidas, recibirás un error que se ve así:

```json theme={null}
{
    "error": {
        "type": "link_error",
        "message": "The institution indicated that the credentials are invalid. You need to reconnect the account.",
        "code": "rejected_refresh_intent"
    }
}
```

Si aún no hemos confirmado que las credenciales que estás intentando usar son inválidas pero el banco dijo recientemente que son inválidas, recibirás un error pidiéndote que esperes algún tiempo, que se ve así:

```json theme={null}
{
    "error": {
        "type": "link_error",
        "message": "The institution indicated that the credentials are invalid. You have to wait at least an hour to avoid locking your credentials",
        "code": "rejected_refresh_intent"
    }
}
```
