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

# Renovar token

> Genera un nuevo par de tokens usando el refresh token actual.

<ParamField body="refreshToken" type="string" required>
  Token de actualización obtenido en el inicio de sesión o registro.
</ParamField>

### Respuesta

<ResponseField name="accessToken" type="string">
  Nuevo token de acceso JWT.
</ResponseField>

<ResponseField name="refreshToken" type="string">
  Nuevo token de actualización.
</ResponseField>

<ResponseExample>
  ```json theme={null}
  {
    "accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
    "refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
  }
  ```
</ResponseExample>
