Pular para o conteúdo 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.

Autorizações

Authorization
string
header
obrigatório

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

Cabeçalhos

X-Request-Id
string

A unique identifier for tracing the request across services.

Parâmetros de consulta

state
enum<string>
obrigatório

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

Opções disponíveis:
pending,
ready,
stale,
failed,
in_flight
cursor
string

Opaque pagination cursor returned by the previous response.

limit
integer
padrão:50

Page size (default 50, max 200)

Intervalo obrigatório: 1 <= x <= 200

Resposta

Page of bridge candidates

A cursor-paginated page of bridge readiness candidates.

items
object[]
obrigatório

List of bridge candidates for the current page.

state
string
obrigatório

The readiness state filter applied to this page.

Exemplo:

"ready"

limit
integer
obrigatório

The page size used for this response.

Exemplo:

50

nextCursor
string

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

Exemplo:

"eyJjIjoiMjAyNS0wMS0wMVQwMDowMDowMFoiLCJpIjoiMTIzZTQ1NjctZTg5Yi0xMmQzLWE0NTYtNDI2NjE0MTc0MDAwIn0="