MCPBundler Docs
MCPBundler Docs
Volver al marketplacePrimeros PasosAutenticacionTutorial - De un Bundle a un Agente Conectado
Create PipelineDelete PipelineFetch the JSON Schema for a pipeline config, by module typeGet RunList PipelinesList RunsTrigger a catalog ingestion pipeline run without blockingTrigger a managed catalog ingestion pipelineUpdate Pipeline
Admin Ingestion

Trigger a catalog ingestion pipeline run without blocking

POST
/v1/admin/ingestion/{source_slug}/trigger

Claims and starts a pipeline run in the background - unlike /sync, this returns immediately. Poll GET /admin/ingestion/runs/{run_id} for its outcome. Admin-only.

Authorization

OAuth2AuthorizationCodeBearer
AuthorizationBearer <token>

In: header

Path Parameters

source_slug*Source Slug

Query Parameters

verify_locally?Verify Locally
Defaulttrue

Response Body

application/json

application/json

curl -X POST "https://example.com/v1/admin/ingestion/string/trigger"
{  "run_id": "dded282c-8ebd-44cf-8ba5-9a234973d1ec",  "status": "string"}
{  "detail": [    {      "loc": [        "string"      ],      "msg": "string",      "type": "string"    }  ]}

List Runs

Previous Page

Trigger a managed catalog ingestion pipeline

Next Page