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

List Runs

GET
/v1/admin/ingestion/pipelines/{slug}/runs

Authorization

OAuth2AuthorizationCodeBearer
AuthorizationBearer <token>

In: header

Path Parameters

slug*Slug

Query Parameters

page?Page
Range1 <= value
Default1
page_size?Page Size
Range1 <= value <= 100
Default20
verify_locally?Verify Locally
Defaulttrue

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/admin/ingestion/pipelines/string/runs"
{  "items": [    {      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",      "source_slug": "string",      "status": "string",      "started_at": "2019-08-24T14:15:22Z",      "finished_at": "2019-08-24T14:15:22Z",      "triggered_by": "string",      "candidates_seen": 0,      "listings_created": 0,      "listings_enriched": 0,      "listings_skipped_locked": 0,      "errors": [        "string"      ]    }  ],  "total": 0}
{  "detail": [    {      "loc": [        "string"      ],      "msg": "string",      "type": "string"    }  ]}

List Pipelines

Previous Page

Trigger a catalog ingestion pipeline run without blocking

Next Page