Saltar al contenido principal
GET
/
v1
/
discovery
/
extractions
/
bridge
/
candidates
List Fetcher bridge readiness candidates
curl --request GET \
  --url https://matcher.sandbox.lerian.net/v1/discovery/extractions/bridge/candidates \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "extractionId": "123e4567-e89b-12d3-a456-426614174000",
      "connectionId": "123e4567-e89b-12d3-a456-426614174001",
      "status": "COMPLETED",
      "readinessState": "ready",
      "createdAt": "2025-01-01T00:00:00Z",
      "updatedAt": "2025-01-01T01:00:00Z",
      "ageSeconds": 3600,
      "ingestionJobId": "123e4567-e89b-12d3-a456-426614174002",
      "fetcherJobId": "fetcher-job-abc123",
      "bridgeLastError": "integrity_failed"
    }
  ],
  "state": "ready",
  "limit": 50,
  "nextCursor": "eyJjIjoiMjAyNS0wMS0wMVQwMDowMDowMFoiLCJpIjoiMTIzZTQ1NjctZTg5Yi0xMmQzLWE0NTYtNDI2NjE0MTc0MDAwIn0="
}

Documentation Index

Fetch the complete documentation index at: https://docs.lerian.studio/llms.txt

Use this file to discover all available pages before exploring further.

Autorizaciones

Authorization
string
header
requerido

Bearer token authentication (format: "Bearer {token}")

Encabezados

X-Request-Id
string

A unique identifier for tracing the request across services.

Parámetros de consulta

state
enum<string>
requerido

Readiness state filter: pending, ready, stale, failed, or in_flight

Opciones disponibles:
pending,
ready,
stale,
failed,
in_flight
cursor
string

Opaque pagination cursor returned by the previous response.

limit
integer
predeterminado:50

Page size (default 50, max 200)

Rango requerido: 1 <= x <= 200

Respuesta

Page of bridge candidates

A cursor-paginated page of bridge readiness candidates.

items
object[]
requerido

List of bridge candidates for the current page.

state
string
requerido

The readiness state filter applied to this page.

Ejemplo:

"ready"

limit
integer
requerido

The page size used for this response.

Ejemplo:

50

nextCursor
string

Opaque cursor for fetching the next page. Absent when no more pages exist.

Ejemplo:

"eyJjIjoiMjAyNS0wMS0wMVQwMDowMDowMFoiLCJpIjoiMTIzZTQ1NjctZTg5Yi0xMmQzLWE0NTYtNDI2NjE0MTc0MDAwIn0="