Skip to main content
GET
/
admin
/
payment-links
Listar payment links
curl --request GET \
  --url https://api.example.com/admin/payment-links
{
  "data": [
    {
      "id": "plk_abc123",
      "merchantId": "mch_xyz789",
      "amount": 150.00,
      "currency": "VES",
      "status": "ACTIVE",
      "environment": "live"
    }
  ],
  "page": 1,
  "limit": 50,
  "total": 125
}
Este endpoint requiere autenticación con Bearer token y rol ADMIN.

Parámetros de consulta

environment
string
Filtrar por ambiente (live o test).
merchantId
string
Filtrar por ID del merchant.
active
boolean
Filtrar por links activos o inactivos.
page
integer
default:"1"
Número de página para la paginación.
limit
integer
default:"50"
Cantidad de resultados por página.

Respuesta

data
array
Lista de objetos payment link.
page
integer
Página actual.
total
integer
Total de registros encontrados.
{
  "data": [
    {
      "id": "plk_abc123",
      "merchantId": "mch_xyz789",
      "amount": 150.00,
      "currency": "VES",
      "status": "ACTIVE",
      "environment": "live"
    }
  ],
  "page": 1,
  "limit": 50,
  "total": 125
}