> ## 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.

# Actualizar merchant

> Actualiza la información de un merchant existente.

## Autenticación

Este endpoint requiere autenticación mediante Bearer token.

## Parámetros de ruta

<ParamField path="id" type="string" required>
  Identificador único del merchant.
</ParamField>

## Cuerpo de la solicitud

<ParamField body="name" type="string">
  Nuevo nombre del merchant.
</ParamField>

<ParamField body="description" type="string">
  Nueva descripción del merchant.
</ParamField>

### Respuesta

<ResponseField name="id" type="string">
  Identificador único del merchant.
</ResponseField>

<ResponseField name="name" type="string">
  Nombre actualizado del merchant.
</ResponseField>

<ResponseField name="rif" type="string">
  RIF del merchant.
</ResponseField>

<ResponseField name="description" type="string">
  Descripción actualizada del merchant.
</ResponseField>

<ResponseField name="owner" type="string">
  ID del usuario propietario del merchant.
</ResponseField>

<ResponseField name="status" type="string">
  Estado del merchant (`ACTIVE` o `INACTIVE`).
</ResponseField>

<ResponseField name="updatedAt" type="string">
  Fecha de última actualización en formato ISO 8601.
</ResponseField>

<ResponseExample>
  ```json theme={null}
  {
    "id": "mrc_abc123",
    "name": "Mi Tienda Actualizada",
    "rif": "J-12345678-9",
    "description": "Descripción actualizada",
    "owner": "usr_xyz789",
    "status": "ACTIVE",
    "updatedAt": "2026-03-31T12:00:00.000Z"
  }
  ```
</ResponseExample>
