Skip to main content
GET
/
api
/
v1
/
merchants
/
{id}
Obtener merchant
curl --request GET \
  --url https://api.venepagos.com.ve/api/v1/merchants/{id}
{
  "id": "mrc_abc123",
  "name": "Mi Tienda",
  "rif": "J-12345678-9",
  "description": "Tienda de ejemplo",
  "owner": {
    "id": "usr_xyz789",
    "email": "owner@example.com",
    "name": "Juan Pérez"
  },
  "status": "ACTIVE",
  "createdAt": "2026-01-15T10:30:00.000Z",
  "updatedAt": "2026-03-20T14:00:00.000Z"
}

Autenticación

Este endpoint requiere autenticación mediante Bearer token.

Parámetros de ruta

id
string
required
Identificador único del merchant.

Respuesta

id
string
Identificador único del merchant.
name
string
Nombre del merchant.
rif
string
RIF del merchant.
description
string
Descripción del merchant.
owner
object
Información del propietario del merchant.
status
string
Estado del merchant (ACTIVE o INACTIVE).
createdAt
string
Fecha de creación en formato ISO 8601.
updatedAt
string
Fecha de última actualización en formato ISO 8601.
{
  "id": "mrc_abc123",
  "name": "Mi Tienda",
  "rif": "J-12345678-9",
  "description": "Tienda de ejemplo",
  "owner": {
    "id": "usr_xyz789",
    "email": "owner@example.com",
    "name": "Juan Pérez"
  },
  "status": "ACTIVE",
  "createdAt": "2026-01-15T10:30:00.000Z",
  "updatedAt": "2026-03-20T14:00:00.000Z"
}